@grumvalski will this fix this issue?
--- a/src/modules/http_async_client/http_multi.c
+++ b/src/modules/http_async_client/http_multi.c
@@ -330,8 +330,10 @@ static void *curl_shm_malloc(size_t size)
}
static void curl_shm_free(void *ptr)
{
- if (ptr)
+ if (ptr) {
shm_free(ptr);
+ ptr = NULL;
+ }
}
static void *curl_shm_realloc(void *ptr, size_t size)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.