From fe6f8712a439c8b5046a03bca9ce5ae8e75aa4f5 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Fri, 27 Jul 2001 10:16:41 +0000 Subject: - Get rid of ELS_*(), and use TSRMLS_*() instead. - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it... --- ext/wddx/wddx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/wddx/wddx.c') diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c index f1f9c27aa8..2149708fa8 100644 --- a/ext/wddx/wddx.c +++ b/ext/wddx/wddx.c @@ -641,7 +641,7 @@ static void php_wddx_add_var(wddx_packet *packet, zval *name_var) { zval **val; HashTable *target_hash; - ELS_FETCH(); + TSRMLS_FETCH(); if (Z_TYPE_P(name_var) == IS_STRING) { @@ -783,7 +783,7 @@ static void php_wddx_pop_element(void *user_data, const char *name) zend_class_entry *ce; zval *obj; zval *tmp; - ELS_FETCH(); + TSRMLS_FETCH(); if (stack->top == 0) return; -- cgit v1.2.1