| Index: src/isolate.h
|
| ===================================================================
|
| --- src/isolate.h (revision 7511)
|
| +++ src/isolate.h (working copy)
|
| @@ -316,6 +316,8 @@
|
| /* AstNode state. */ \
|
| V(unsigned, ast_node_id, 0) \
|
| V(unsigned, ast_node_count, 0) \
|
| + /* SafeStackFrameIterator activations count. */ \
|
| + V(int, safe_stack_iterator_counter, 0) \
|
| ISOLATE_PLATFORM_INIT_LIST(V) \
|
| ISOLATE_LOGGING_INIT_LIST(V) \
|
| ISOLATE_DEBUGGER_INIT_LIST(V)
|
| @@ -1142,7 +1144,7 @@
|
| isolate->set_save_context(this);
|
|
|
| // If there is no JS frame under the current C frame, use the value 0.
|
| - JavaScriptFrameIterator it;
|
| + JavaScriptFrameIterator it(isolate);
|
| js_sp_ = it.done() ? 0 : it.frame()->sp();
|
| }
|
|
|
|
|