From: Michael Wallner Date: Thu, 8 Sep 2005 18:09:49 +0000 (+0000) Subject: - missing free X-Git-Tag: RELEASE_0_13_0~4 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=a347b389d7214557b52948c9df211baab7c02e53 - missing free --- diff --git a/http.c b/http.c index 06c3224..a174960 100644 --- a/http.c +++ b/http.c @@ -297,6 +297,9 @@ static inline void http_ssl_cleanup(void) for (i = 0; i < c; ++i) { tsrm_mutex_free(http_ssl_mutex[i]); } + + free(http_ssl_mutex); + http_ssl_mutex = NULL; } #endif /* }}} */