@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 or view it on GitHub:
https://github.com/kamailio/kamailio/issues/1340#issuecomment-353368139
_______________________________________________
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev

Reply via email to