gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 152/163: schannel: fix -Wsign-compare warning


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 152/163: schannel: fix -Wsign-compare warning
Date: Sun, 05 Aug 2018 12:37:58 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 424f1cfefbace57e5873e614a43ff14b251bbc7e
Author: Marcel Raad <address@hidden>
AuthorDate: Sun Jul 8 17:16:34 2018 +0200

    schannel: fix -Wsign-compare warning
    
    MinGW warns:
    /lib/vtls/schannel.c:219:64: warning: signed and unsigned type in
    conditional expression [-Wsign-compare]
    
    Fix this by casting the ptrdiff_t to size_t as we know it's positive.
    
    Closes https://github.com/curl/curl/pull/2721
---
 lib/vtls/schannel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c
index b72542225..382efb525 100644
--- a/lib/vtls/schannel.c
+++ b/lib/vtls/schannel.c
@@ -216,7 +216,7 @@ get_alg_id_by_name(char *name)
 {
   char tmp[LONGEST_ALG_ID] = { 0 };
   char *nameEnd = strchr(name, ':');
-  size_t n = nameEnd ? min(nameEnd - name, LONGEST_ALG_ID - 1) : \
+  size_t n = nameEnd ? min((size_t)(nameEnd - name), LONGEST_ALG_ID - 1) : \
     min(strlen(name), LONGEST_ALG_ID - 1);
   strncpy(tmp, name, n);
   tmp[n] = 0;

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



reply via email to

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