diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-02-06 16:22:00 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-02-06 16:22:00 +0000 |
commit | 67e87fcf7078bb339e8ea1a81e9a12fa1c0687c8 (patch) | |
tree | 8f7e2e3a3d3bdfccb37da1a9068e4c1c31113bd7 /src | |
parent | 66802652b8500bae10ac530b6fe4976669f5dcff (diff) |
SRS: fix crash in queryprogram router when compiled with EXPERIMENTAL_SRS
Diffstat (limited to 'src')
-rw-r--r-- | src/src/routers/queryprogram.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/src/routers/queryprogram.c b/src/src/routers/queryprogram.c index 138062e16..018e4c831 100644 --- a/src/src/routers/queryprogram.c +++ b/src/src/routers/queryprogram.c @@ -223,6 +223,10 @@ rc = rf_get_munge_headers(addr, rblock, &addr_prop.extra_headers, &addr_prop.remove_headers); if (rc != OK) return rc; +#ifdef EXPERIMENTAL_SRS +addr_prop.srs_sender = NULL; +#endif + /* Get the fixed or expanded uid under which the command is to run (initialization ensures that one or the other is set). */ |