0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-11-08 16:48:40 +00:00

don't free interned strings on PHP >= 7.3

This commit is contained in:
Stefan Siegl 2018-07-13 14:19:02 +02:00
parent 2c9d683e86
commit aa041b4597
No known key found for this signature in database
GPG Key ID: 73942AF5642F3DDA

View File

@ -983,12 +983,14 @@ static void v8js_persistent_zval_ctor(zval *p) /* {{{ */
}
/* }}} */
#if PHP_VERSION_ID < 70300
static void v8js_persistent_zval_dtor(zval *p) /* {{{ */
{
assert(Z_TYPE_P(p) == IS_STRING);
free(Z_STR_P(p));
}
/* }}} */
#endif
static void v8js_script_free(v8js_script *res)
{
@ -1052,7 +1054,11 @@ static int v8js_register_extension(zend_string *name, zend_string *source, zval
if (jsext->deps) {
jsext->deps_ht = (HashTable *) malloc(sizeof(HashTable));
#if PHP_VERSION_ID < 70300
zend_hash_init(jsext->deps_ht, jsext->deps_count, NULL, v8js_persistent_zval_dtor, 1);
#else
zend_hash_init(jsext->deps_ht, jsext->deps_count, NULL, NULL, 1);
#endif
zend_hash_copy(jsext->deps_ht, Z_ARRVAL_P(deps_arr), v8js_persistent_zval_ctor);
}