]> granicus.if.org Git - curl/commitdiff
parsedate.c: Fixed compilation warning
authorSteve Holme <steve_holme@hotmail.com>
Wed, 10 Dec 2014 11:38:38 +0000 (11:38 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Wed, 10 Dec 2014 11:38:38 +0000 (11:38 +0000)
parsedate.c:548: warning: 'parsed' may be used uninitialized in this
                 function

As curl_getdate() returns -1 when parsedate() fails we can initialise
parsed to -1.

lib/parsedate.c

index ecb8dfb426d2ebd90cc00de767963e635c378170..3e168f5ab914c3506a2215b9202759a4199f7f09 100644 (file)
@@ -545,7 +545,7 @@ static int parsedate(const char *date, time_t *output)
 
 time_t curl_getdate(const char *p, const time_t *now)
 {
-  time_t parsed;
+  time_t parsed = -1;
   int rc = parsedate(p, &parsed);
   (void)now; /* legacy argument from the past that we ignore */