0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-12-22 14:01:53 +00:00
… horrible hack but it works for now until we have a better solution.
This commit is contained in:
Patrick Reilly 2013-05-09 15:34:25 -07:00
parent 0db973bee3
commit edb8609cfe

View File

@ -384,6 +384,13 @@ static v8::Handle<v8::Value> php_v8js_hash_to_jsobj(zval *value TSRMLS_DC) /* {{
newobj->SetHiddenValue(V8JS_SYM(ZEND_ISSET_FUNC_NAME), PHP_V8JS_CALLBACK(isset_ptr));
}
}
// See https://github.com/preillyme/v8js/issues/6
if (Z_REFCOUNT_P(value) == 1)
{
Z_SET_REFCOUNT_P(value, 2);
}
newobj->SetAlignedPointerInInternalField(0, (void *) value);
} else {
new_tpl->SetClassName(V8JS_SYM("Array"));