diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-27 10:10:39 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-27 10:10:39 +0000 |
commit | 2c254ba762d9392a732d5793b5b193ee6e395f1c (patch) | |
tree | 1b3d5bd700222f3bb7387b698be9647525d33573 /Zend/zend_variables.c | |
parent | 736b4ae43d3f37fda450f6fcd67286a3bfed4fb6 (diff) | |
download | php-git-2c254ba762d9392a732d5793b5b193ee6e395f1c.tar.gz |
Get rid of ELS_*(), and use TSRMLS_*() instead.
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...
Diffstat (limited to 'Zend/zend_variables.c')
-rw-r--r-- | Zend/zend_variables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_variables.c b/Zend/zend_variables.c index cbcacc8f6c..64807fd840 100644 --- a/Zend/zend_variables.c +++ b/Zend/zend_variables.c @@ -45,7 +45,7 @@ ZEND_API void _zval_dtor(zval *zvalue ZEND_FILE_LINE_DC) break; case IS_ARRAY: case IS_CONSTANT_ARRAY: { - ELS_FETCH(); + TSRMLS_FETCH(); if (zvalue->value.ht && (zvalue->value.ht != &EG(symbol_table))) { zend_hash_destroy(zvalue->value.ht); @@ -103,7 +103,7 @@ ZEND_API int _zval_copy_ctor(zval *zvalue ZEND_FILE_LINE_DC) case IS_CONSTANT_ARRAY: { zval *tmp; HashTable *original_ht = zvalue->value.ht; - ELS_FETCH(); + TSRMLS_FETCH(); if (zvalue->value.ht == &EG(symbol_table)) { return SUCCESS; /* do nothing */ |