INN commit: branches/2.5/innd (art.c)

INN Commit rra at isc.org
Sat May 2 11:57:41 UTC 2015


    Date: Saturday, May 2, 2015 @ 04:57:40
  Author: iulius
Revision: 9836

innd/art.c:  Fix a dereferencing issue when parsing Injection-Info: header field

Thanks to David Binderman for the patch.

Modified:
  branches/2.5/innd/art.c

-------+
 art.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: art.c
===================================================================
--- art.c	2015-05-02 11:57:03 UTC (rev 9835)
+++ art.c	2015-05-02 11:57:40 UTC (rev 9836)
@@ -1688,7 +1688,7 @@
       } else if (HDR_FOUND(HDR__INJECTION_INFO)) {
         begin = (char *) skip_cfws(HDR(HDR__INJECTION_INFO));
 
-        if (begin == '\0')
+        if (*begin == '\0')
           continue;
 
         /* The path identity ends with ';' or CFWS. */



More information about the inn-committers mailing list