summaryrefslogtreecommitdiff
path: root/ext/spl/spl_functions.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-05-29 23:55:07 +0000
committerMarcus Boerger <helly@php.net>2003-05-29 23:55:07 +0000
commit5b32cdc5a021f980a49c971e7bc8f78a20a064b5 (patch)
treea80d9f233e5191ebbd4fcbf715ff8f223686477c /ext/spl/spl_functions.c
parent90640a77746a7f2e53ba809a0898343bb84147a1 (diff)
downloadphp-git-5b32cdc5a021f980a49c971e7bc8f78a20a064b5.tar.gz
Fix last commit
Diffstat (limited to 'ext/spl/spl_functions.c')
-rwxr-xr-xext/spl/spl_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_functions.c b/ext/spl/spl_functions.c
index 93dfe0bc2c..7e17755d47 100755
--- a/ext/spl/spl_functions.c
+++ b/ext/spl/spl_functions.c
@@ -166,7 +166,7 @@ int spl_add_classes(zend_class_entry ** ppce, zval *list TSRMLS_DC)
spl_add_interfaces(list, pce TSRMLS_CC);
while (pce->parent) {
pce = pce->parent;
- spl_add_classes(&pce->parent, list TSRMLS_CC);
+ spl_add_classes(&pce, list TSRMLS_CC);
}
return 0;
}