Fixed compiler warning on x32

This commit is contained in:
Evgeny Grin (Karlson2k)
2023-05-24 14:18:22 +03:00
parent 415461f591
commit 0dd8a700bf
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -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.
+2
View File
@@ -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;