Changeset 203613 in webkit for trunk/Source/JavaScriptCore/jsc.cpp
- Timestamp:
- Jul 22, 2016, 1:35:07 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jsc.cpp
r203603 r203613 2427 2427 JSC::initializeThreading(); 2428 2428 2429 Ref<VM> vm = VM::create(LargeHeap); 2430 int result = runJSC(vm.ptr(), options); 2429 VM* vm = &VM::create(LargeHeap).leakRef(); 2430 int result; 2431 result = runJSC(vm, options); 2431 2432 2432 2433 if (Options::gcAtEnd()) {
Note:
See TracChangeset
for help on using the changeset viewer.