소스 검색

Use isolate version of V8::TerminateExecution, refs #92

Stefan Siegl 11 년 전
부모
커밋
a134129018
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      v8js_methods.cc

+ 1 - 1
v8js_methods.cc

@@ -29,7 +29,7 @@ void php_v8js_commonjs_normalise_identifier(char *base, char *identifier, char *
 /* global.exit - terminate execution */
 V8JS_METHOD(exit) /* {{{ */
 {
-	v8::V8::TerminateExecution();
+	v8::V8::TerminateExecution(info.GetIsolate());
 }
 /* }}} */