0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-18 23:15:18 +00:00

PHP7 adapt: fix setModuleLoader

This commit is contained in:
Stefan Siegl 2015-08-29 21:00:13 +02:00
parent 31bafd052d
commit eca7656b7d

View File

@ -657,14 +657,14 @@ static PHP_METHOD(V8Js, clearPendingException)
static PHP_METHOD(V8Js, setModuleLoader)
{
v8js_ctx *c;
zval callable;
zval *callable;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &callable) == FAILURE) {
return;
}
c = Z_V8JS_CTX_OBJ_P(getThis());
ZVAL_COPY(&c->module_loader, &callable);
ZVAL_COPY(&c->module_loader, callable);
}
/* }}} */