diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2002-11-04 17:26:44 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2002-11-04 17:26:44 +0000 |
commit | 0506fa5e6ae6cde00479f2de3c94fdc4f3f4799f (patch) | |
tree | c3c778e05c47ee5cb88ac71ea8d441f001595550 /Zend/zend_hash.c | |
parent | b8f8591326bbe6e80e72d01714b52021676bc920 (diff) | |
download | php-git-0506fa5e6ae6cde00479f2de3c94fdc4f3f4799f.tar.gz |
If ordered is not set a random compiler assigned value of *p2 would be used,
this patch fixes the problem by initializing *p2 to NULL.
Diffstat (limited to 'Zend/zend_hash.c')
-rw-r--r-- | Zend/zend_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_hash.c b/Zend/zend_hash.c index 61b3b036f6..aa34fb09cf 100644 --- a/Zend/zend_hash.c +++ b/Zend/zend_hash.c @@ -1163,7 +1163,7 @@ ZEND_API int zend_hash_sort(HashTable *ht, sort_func_t sort_func, ZEND_API int zend_hash_compare(HashTable *ht1, HashTable *ht2, compare_func_t compar, zend_bool ordered TSRMLS_DC) { - Bucket *p1, *p2; + Bucket *p1, *p2=NULL; int result; void *pData2; |