* unititialized var...
authorWilfried Göesgens <willi@citadel.org>
Thu, 14 Jan 2010 22:55:31 +0000 (22:55 +0000)
committerWilfried Göesgens <willi@citadel.org>
Thu, 14 Jan 2010 22:55:31 +0000 (22:55 +0000)
libcitadel/lib/mime_parser.c

index 6b207c92679552e1a451010662836bfad971585d..c46c01b4fe653a815443dd6507942c5eb19b7589 100644 (file)
@@ -26,7 +26,7 @@
 
 void extract_key(char *target, char *source, long sourcelen, char *key, long keylen, char KeyEnd)
 {
-       char *sptr, *ptr;
+       char *sptr, *ptr = NULL;
        int double_quotes = 0;
        long RealKeyLen = keylen;