Try fixing NaCl V8 compilation failure by initializing interrupt_callback_data_.
TBR=dcarney@chromium.org BUG= Review URL: https://codereview.chromium.org/116093006 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18376 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
bc77d4d60a
commit
0b5b395bc1
@ -623,7 +623,8 @@ void StackGuard::ThreadLocal::Clear() {
|
||||
nesting_ = 0;
|
||||
postpone_interrupts_nesting_ = 0;
|
||||
interrupt_flags_ = 0;
|
||||
interrupt_callback_ = 0;
|
||||
interrupt_callback_ = NULL;
|
||||
interrupt_callback_data_ = NULL;
|
||||
}
|
||||
|
||||
|
||||
@ -644,7 +645,8 @@ bool StackGuard::ThreadLocal::Initialize(Isolate* isolate) {
|
||||
nesting_ = 0;
|
||||
postpone_interrupts_nesting_ = 0;
|
||||
interrupt_flags_ = 0;
|
||||
interrupt_callback_ = 0;
|
||||
interrupt_callback_ = NULL;
|
||||
interrupt_callback_data_ = NULL;
|
||||
return should_set_stack_limits;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user