diff options
author | Zeev Suraski <zeev@php.net> | 2003-01-07 12:11:40 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2003-01-07 12:11:40 +0000 |
commit | e8de102cd64da2e2825cb020d42e45680ba397e0 (patch) | |
tree | b2e711472b2afa7346d871036508b08564f6b130 /TSRM/TSRM.c | |
parent | 651cea08f01760334bf6b828642d97e331842963 (diff) | |
download | php-git-e8de102cd64da2e2825cb020d42e45680ba397e0.tar.gz |
Fix leaks
Diffstat (limited to 'TSRM/TSRM.c')
-rw-r--r-- | TSRM/TSRM.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c index fe096e9c28..f39114d770 100644 --- a/TSRM/TSRM.c +++ b/TSRM/TSRM.c @@ -508,6 +508,7 @@ TSRM_API void tsrm_mutex_free(MUTEX_T mutexp) if (mutexp) { #ifdef TSRM_WIN32 DeleteCriticalSection(mutexp); + free(mutexp); #elif defined(NETWARE) #ifdef USE_MPK kMutexFree(mutexp); |