summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2014-11-29 22:20:05 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2014-11-29 22:20:05 +0000
commit288644ddb19bfdd71d07b3edf0e3eb695f3bae98 (patch)
tree4bef92293dab93bfa06dbe871482344193ba3482
parent025f72429925cf26439728cf19ce81377299eef9 (diff)
Compiler quietening. Bug 1555
-rw-r--r--src/src/acl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/src/acl.c b/src/src/acl.c
index 4ee70bf31..dc857b577 100644
--- a/src/src/acl.c
+++ b/src/src/acl.c
@@ -2352,7 +2352,10 @@ rate measurement as opposed to rate limiting. */
sender_rate_limit = string_nextinlist(&arg, &sep, NULL, 0);
if (sender_rate_limit == NULL)
+ {
limit = -1.0;
+ ss = NULL; /* compiler quietening */
+ }
else
{
limit = Ustrtod(sender_rate_limit, &ss);