PHP :: Bug #41134 :: zend_ts_hash_clean not thread-safe
| Bug #41134 | zend_ts_hash_clean not thread-safe | ||||
|---|---|---|---|---|---|
| Submitted: | 2007-04-18 15:11 UTC | Modified: | 2007-05-11 12:21 UTC | ||
| From: | marco dot cova at gmail dot com | Assigned: | |||
| Status: | Closed | Package: | Scripting Engine problem | ||
| PHP Version: | 5.2.1 | OS: | |||
| Private report: | No | CVE-ID: | None | ||
[2007-04-18 15:11 UTC] marco dot cova at gmail dot com
Description:
------------
It seems that zend_ts_hash_clean is not actually thread-safe: it
delegates to zend_hash_clean without first acquiring the write lock on
the hashtable.
The following patch should fix this.
--- zend_ts_hash.c.orig 2007-04-16 10:27:24.000000000 -0700
+++ zend_ts_hash.c 2007-04-16 10:28:44.000000000 -0700
@@ -90,8 +90,10 @@
ZEND_API void zend_ts_hash_clean(TsHashTable *ht)
{
+ begin_write(ht);
ht->reader = 0;
zend_hash_clean(TS_HASH(ht));
+ end_write(ht);
}
ZEND_API int _zend_ts_hash_add_or_update(TsHashTable *ht, char *arKey, uint nK
eyLength, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC
)
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2007-05-11 12:21 UTC] tony2001@php.net