From: Ilia Alshanetsky Date: Fri, 6 Feb 2004 03:14:06 +0000 (+0000) Subject: Possible fix for bug #27165. X-Git-Tag: php-5.0.0b4RC1~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dfde3095e42374d5f53e291c4a41370939b0b99a;p=php Possible fix for bug #27165. --- diff --git a/ext/spl/spl_functions.c b/ext/spl/spl_functions.c index 820866ccd5..b4fd7507cf 100755 --- a/ext/spl/spl_functions.c +++ b/ext/spl/spl_functions.c @@ -135,7 +135,7 @@ int spl_add_classes(zend_class_entry ** ppce, zval *list, int sub, int allow, in { zend_class_entry *pce = *ppce; - if (!ppce) { + if (!pce) { return 0; } spl_add_class_name(list, pce, allow, ce_flags TSRMLS_CC);