stas Fri, 18 Nov 2011 09:15:15 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=319453
Log: fix typo Changed paths: U php/php-src/branches/PHP_5_4/Zend/zend_builtin_functions.c U php/php-src/trunk/Zend/zend_builtin_functions.c Modified: php/php-src/branches/PHP_5_4/Zend/zend_builtin_functions.c =================================================================== --- php/php-src/branches/PHP_5_4/Zend/zend_builtin_functions.c 2011-11-18 08:50:29 UTC (rev 319452) +++ php/php-src/branches/PHP_5_4/Zend/zend_builtin_functions.c 2011-11-18 09:15:15 UTC (rev 319453) @@ -706,7 +706,7 @@ } c.flags = case_sensitive; /* non persistent */ c.name = IS_INTERNED(name) ? name : zend_strndup(name, name_len); - if(name == NULL) { + if(c.name == NULL) { RETURN_FALSE; } c.name_len = name_len+1; Modified: php/php-src/trunk/Zend/zend_builtin_functions.c =================================================================== --- php/php-src/trunk/Zend/zend_builtin_functions.c 2011-11-18 08:50:29 UTC (rev 319452) +++ php/php-src/trunk/Zend/zend_builtin_functions.c 2011-11-18 09:15:15 UTC (rev 319453) @@ -706,7 +706,7 @@ } c.flags = case_sensitive; /* non persistent */ c.name = IS_INTERNED(name) ? name : zend_strndup(name, name_len); - if(name == NULL) { + if(c.name == NULL) { RETURN_FALSE; } c.name_len = name_len+1;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php