gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] 138/156: Fixed compiler warning on x32


From: gnunet
Subject: [libmicrohttpd] 138/156: Fixed compiler warning on x32
Date: Sun, 28 May 2023 17:53:11 +0200

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

karlson2k pushed a commit to tag v0.9.77
in repository libmicrohttpd.

commit 0dd8a700bfe56c61a756a0789dfa250bcd06e8d8
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Wed May 24 14:00:27 2023 +0300

    Fixed compiler warning on x32
---
 ChangeLog                 | 3 ++-
 src/microhttpd/response.c | 2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index babd5e3f..9706f878 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,7 +19,8 @@ May 2023
     on automatic selection by TLS library.
     HTTPS tests: changed certificate hash algorithm from SHA-1 to SHA-256
     as SHA-1 is already blocked by some libs/OSes.
-    W32 VS projects: supported ARM and ARM64. -EG
+    W32 VS projects: supported ARM and ARM64.
+    Fixed compiler warning on x32. -EG
 
 April 2023
     Fixed processing of folded headers.
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index 41665754..99a7f188 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -1248,8 +1248,10 @@ MHD_create_response_from_data (size_t size,
 
   if ((NULL == data) && (size > 0))
     return NULL;
+#if SIZEOF_SIZE_T >= SIZEOF_UINT64_T
   if (MHD_SIZE_UNKNOWN == size)
     return NULL;
+#endif /* SIZEOF_SIZE_T >= SIZEOF_UINT64_T */
   if (NULL == (response = MHD_calloc_ (1, sizeof (struct MHD_Response))))
     return NULL;
   response->fd = -1;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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