gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 45/150: getdate: return -1 for out of range


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 45/150: getdate: return -1 for out of range
Date: Fri, 30 Mar 2018 16:48:19 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit a19afaccfeb5a77c15fdfc1c2be16fb27828cefc
Author: Daniel Stenberg <address@hidden>
AuthorDate: Thu Feb 1 22:23:20 2018 +0100

    getdate: return -1 for out of range
    
    ...as that's how the function is documented to work.
    
    Reported-by: Michael Kaufmann
    Bug found in an autobuild with 32 bit time_t
    
    Closes #2278
---
 lib/parsedate.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/lib/parsedate.c b/lib/parsedate.c
index beaa1bbd5..23a787fc9 100644
--- a/lib/parsedate.c
+++ b/lib/parsedate.c
@@ -561,14 +561,10 @@ time_t curl_getdate(const char *p, const time_t *now)
   int rc = parsedate(p, &parsed);
   (void)now; /* legacy argument from the past that we ignore */
 
-  switch(rc) {
-  case PARSEDATE_OK:
+  if(rc == PARSEDATE_OK) {
     if(parsed == -1)
       /* avoid returning -1 for a working scenario */
       parsed++;
-    /* fallthrough */
-  case PARSEDATE_LATER:
-  case PARSEDATE_SOONER:
     return parsed;
   }
   /* everything else is fail */

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]