diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-11 21:27:44 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-11 21:27:44 +0000 |
commit | 0997fcdc2b276914dfff4ff4a7737a38ce8d4f65 (patch) | |
tree | 0b446cf7fb997154de9066ded55e297cab99ace8 /TSRM | |
parent | ceeb9b38ba264da2a1a24d540d88e3a7654ddb4a (diff) | |
download | php-git-0997fcdc2b276914dfff4ff4a7737a38ce8d4f65.tar.gz |
Fix
Diffstat (limited to 'TSRM')
-rw-r--r-- | TSRM/TSRM.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c index 2e2a2ec1ea..a7e9e640aa 100644 --- a/TSRM/TSRM.c +++ b/TSRM/TSRM.c @@ -258,8 +258,8 @@ void ts_free_thread() } if (thread_resources->next) { last = thread_resources; - thread_resources = thread_resources->next; } + thread_resources = thread_resources->next; } tsrm_mutex_unlock(tsmm_mutex); } |