diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2004-02-06 03:14:06 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2004-02-06 03:14:06 +0000 |
| commit | dfde3095e42374d5f53e291c4a41370939b0b99a (patch) | |
| tree | 356b0fc6a7617f22f79600f25853c24d9b573507 /ext/spl/spl_functions.c | |
| parent | c858a4e93cc4a34a6114d38b1cfd7055fd900fc9 (diff) | |
| download | php-git-dfde3095e42374d5f53e291c4a41370939b0b99a.tar.gz | |
Possible fix for bug #27165.
Diffstat (limited to 'ext/spl/spl_functions.c')
| -rwxr-xr-x | ext/spl/spl_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
