diff options
author | Xuefer <xuefer@gmail.com> | 2014-09-11 16:31:11 +0000 |
---|---|---|
committer | Xuefer <xuefer@gmail.com> | 2014-09-11 16:31:11 +0000 |
commit | 293e6ab44a1a2f4fab913d5ae4603e64adb2e243 (patch) | |
tree | 0f9e1861209292a77b9ef490066d1fe14005944b /xcache | |
parent | 21a895a4c68b59a89f7855d3996ba4698cafe21c (diff) | |
download | xcache-293e6ab44a1a2f4fab913d5ae4603e64adb2e243.tar.gz xcache-293e6ab44a1a2f4fab913d5ae4603e64adb2e243.zip |
refix fix leak in decompiler/disassembler, was broken for older PHP
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1523 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
Diffstat (limited to 'xcache')
-rw-r--r-- | xcache/xc_compatibility.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/xcache/xc_compatibility.h b/xcache/xc_compatibility.h index 1d01656..9fad4db 100644 --- a/xcache/xc_compatibility.h +++ b/xcache/xc_compatibility.h @@ -219,13 +219,6 @@ typedef const zstr const_zstr; #endif /* }}} */ -#ifndef MAKE_COPY_ZVAL -# define MAKE_COPY_ZVAL(ppzv, pzv) \ - *(pzv) = **(ppzv); \ - zval_copy_ctor((pzv)); \ - INIT_PZVAL((pzv)); -#endif - /* the class entry type to be stored in class_table */ typedef ZESW(zend_class_entry, zend_class_entry*) xc_cest_t; |