From ad2538d4732ca78575c6038d9d905382cf11e9b1 Mon Sep 17 00:00:00 2001 From: dartraiden Date: Thu, 13 Feb 2025 23:08:12 +0300 Subject: libcurl: update to 8.12.1 --- libs/libcurl/src/memdebug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/libcurl/src/memdebug.c') diff --git a/libs/libcurl/src/memdebug.c b/libs/libcurl/src/memdebug.c index d31658c537..78cd579aee 100644 --- a/libs/libcurl/src/memdebug.c +++ b/libs/libcurl/src/memdebug.c @@ -153,7 +153,7 @@ ALLOC_FUNC void *curl_dbg_malloc(size_t wantedsize, source, line, wantedsize, mem ? (void *)mem->mem : (void *)0); - return (mem ? mem->mem : NULL); + return mem ? mem->mem : NULL; } ALLOC_FUNC void *curl_dbg_calloc(size_t wanted_elements, size_t wanted_size, @@ -181,7 +181,7 @@ ALLOC_FUNC void *curl_dbg_calloc(size_t wanted_elements, size_t wanted_size, source, line, wanted_elements, wanted_size, mem ? (void *)mem->mem : (void *)0); - return (mem ? mem->mem : NULL); + return mem ? mem->mem : NULL; } ALLOC_FUNC char *curl_dbg_strdup(const char *str, -- cgit v1.2.3