summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-05-11 21:27:44 +0000
committerZeev Suraski <zeev@php.net>1999-05-11 21:27:44 +0000
commit0997fcdc2b276914dfff4ff4a7737a38ce8d4f65 (patch)
tree0b446cf7fb997154de9066ded55e297cab99ace8 /TSRM
parentceeb9b38ba264da2a1a24d540d88e3a7654ddb4a (diff)
downloadphp-git-0997fcdc2b276914dfff4ff4a7737a38ce8d4f65.tar.gz
Fix
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/TSRM.c2
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);
}