From: Etienne Kneuss Date: Sun, 25 May 2008 12:23:22 +0000 (+0000) Subject: ws X-Git-Tag: BEFORE_HEAD_NS_CHANGE~1673 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8210627fc1ae39a55e342b512a9e68b538c5ac54;p=php ws --- diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 485c0ba2b5..762497c327 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -393,11 +393,11 @@ PHP_FUNCTION(spl_autoload_call) zval_ptr_dtor(&zclass_name); } /* }}} */ -#define HT_MOVE_TAIL_TO_HEAD(ht) \ +#define HT_MOVE_TAIL_TO_HEAD(ht) \ (ht)->pListTail->pListNext = (ht)->pListHead; \ (ht)->pListHead = (ht)->pListTail; \ (ht)->pListTail = (ht)->pListHead->pListLast; \ - (ht)->pListTail->pListNext = NULL; \ + (ht)->pListTail->pListNext = NULL; \ (ht)->pListHead->pListLast = NULL; /* {{{ proto bool spl_autoload_register([mixed autoload_function = "spl_autoload" [, throw = true [, prepend = false]]]) U