summaryrefslogtreecommitdiff
path: root/ext/opcache/zend_shared_alloc.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2014-04-09 09:43:42 +0400
committerDmitry Stogov <dmitry@zend.com>2014-04-09 09:43:42 +0400
commit479f520d14ed221765af3ff5a3eb77dc54e1defa (patch)
tree30edb1248d6d57e8dddbe9e0b125706db25df771 /ext/opcache/zend_shared_alloc.c
parent7402af380b3a700dda0e89470770fde15bd56204 (diff)
downloadphp-git-479f520d14ed221765af3ff5a3eb77dc54e1defa.tar.gz
Fixed store of "shared" zend_strings
Diffstat (limited to 'ext/opcache/zend_shared_alloc.c')
-rw-r--r--ext/opcache/zend_shared_alloc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/opcache/zend_shared_alloc.c b/ext/opcache/zend_shared_alloc.c
index 73f331de6f..4a31d3de6a 100644
--- a/ext/opcache/zend_shared_alloc.c
+++ b/ext/opcache/zend_shared_alloc.c
@@ -348,7 +348,6 @@ void *_zend_shared_memdup(void *source, size_t size, zend_bool free_source TSRML
memcpy(retval, source, size);
if (free_source) {
efree(source);
-//??? interned_efree((char*)source);
}
zend_shared_alloc_register_xlat_entry(source, retval);
return retval;