@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) ```