mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-09 15:18:41 +00:00
PHP7 adapt: fix setModuleLoader
This commit is contained in:
parent
31bafd052d
commit
eca7656b7d
@ -657,14 +657,14 @@ static PHP_METHOD(V8Js, clearPendingException)
|
|||||||
static PHP_METHOD(V8Js, setModuleLoader)
|
static PHP_METHOD(V8Js, setModuleLoader)
|
||||||
{
|
{
|
||||||
v8js_ctx *c;
|
v8js_ctx *c;
|
||||||
zval callable;
|
zval *callable;
|
||||||
|
|
||||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &callable) == FAILURE) {
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &callable) == FAILURE) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
c = Z_V8JS_CTX_OBJ_P(getThis());
|
c = Z_V8JS_CTX_OBJ_P(getThis());
|
||||||
ZVAL_COPY(&c->module_loader, &callable);
|
ZVAL_COPY(&c->module_loader, callable);
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user