|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-08-09 03:44 UTC] gschlossnagle@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 18:00:01 2025 UTC |
Description: ------------ On line 165 of zend_hash.c there's a right parenthesis too many. Reproduce code: --------------- #if HARDENED_PHP_HASH_PROTECT if (zend_hash_canary_inited)) { zend_hash_canary = zend_canary(); zend_hash_canary_inited = 1; } ht->canary = zend_hash_canary; #endif the second line should be: if (zend_hash_canary_inited) { Expected result: ----------------