[exim-dev] [Bug 1555] using an unitialized variable, 1 line …

Top Pagina
Delete this message
Reply to this message
Auteur: Git Commit
Datum:  
Aan: exim-dev
Onderwerp: [exim-dev] [Bug 1555] using an unitialized variable, 1 line patch included
------- You are receiving this mail because: -------
You are on the CC list for the bug.

http://bugs.exim.org/show_bug.cgi?id=1555

Git Commit <git@???> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |git@???





--- Comment #3 from Git Commit <git@???> 2014-11-29 22:17:10 ---
Git commit:
http://git.exim.org/exim.git/commitdiff/288644ddb19bfdd71d07b3edf0e3eb695f3bae98

commit 288644ddb19bfdd71d07b3edf0e3eb695f3bae98
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Sat Nov 29 22:20:05 2014 +0000
Commit:     Jeremy Harris <jgh146exb@???>
CommitDate: Sat Nov 29 22:20:05 2014 +0000


    Compiler quietening.  Bug 1555
---
 src/src/acl.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


diff --git a/src/src/acl.c b/src/src/acl.c
index 4ee70bf..dc857b5 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);


--
Configure bugmail: http://bugs.exim.org/userprefs.cgi?tab=email