projects
/
m6w6
/
ext-http
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
10025ba
)
- missing free
author
Michael Wallner
<mike@php.net>
Thu, 8 Sep 2005 18:09:49 +0000
(18:09 +0000)
committer
Michael Wallner
<mike@php.net>
Thu, 8 Sep 2005 18:09:49 +0000
(18:09 +0000)
http.c
patch
|
blob
|
history
diff --git
a/http.c
b/http.c
index 06c32241e66db349246e829a5be613a0ca9d2cb7..a174960db9ff46d018feda0ffb76ab67a1b795a4 100644
(file)
--- 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
/* }}} */