gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 92/208: timeval.c: Use long long constant type for


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 92/208: timeval.c: Use long long constant type for timeval assignment
Date: Wed, 09 Aug 2017 17:34:49 +0200

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

ng0 pushed a commit to annotated tag gnurl-7.55.0
in repository gnurl.

commit f50124f56614d1c270bd11c7bf32ddc2a8322b7e
Author: Martin Kepplinger <address@hidden>
AuthorDate: Mon Jul 3 13:23:47 2017 +0200

    timeval.c: Use long long constant type for timeval assignment
    
    On a 64 bit host, sparse says:
    
    timeval.c:148:15: warning: constant 0x7fffffffffffffff is so big it is long
    timeval.c:149:12: warning: constant 0x7fffffffffffffff is so big it is long
    
    so let's use long long constant types in order to prevent undesired overflow
    failures.
    
    Bug: https://curl.haxx.se/mail/lib-2017-07/0003.html
    
    Closes #1636
    
    Signed-off-by: Martin Kepplinger <address@hidden>
---
 lib/timeval.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/timeval.c b/lib/timeval.c
index 1012b4e39..aff53cddc 100644
--- a/lib/timeval.c
+++ b/lib/timeval.c
@@ -145,8 +145,8 @@ time_t Curl_tvdiff_us(struct timeval newer, struct timeval 
older)
     return 0x7fffffff;
 #else
   /* for 64bit time_t systems */
-  if(diff >= (0x7fffffffffffffff/1000000))
-    return 0x7fffffffffffffff;
+  if(diff >= (0x7fffffffffffffffLL/1000000))
+    return 0x7fffffffffffffffLL;
 #endif
   return (newer.tv_sec-older.tv_sec)*1000000+
     (time_t)(newer.tv_usec-older.tv_usec);

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



reply via email to

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