Revision: 18376
Author: [email protected]
Date: Thu Dec 19 17:09:38 2013 UTC
Log: Try fixing NaCl V8 compilation failure by initializing
interrupt_callback_data_.
[email protected]
BUG=
Review URL: https://codereview.chromium.org/116093006
http://code.google.com/p/v8/source/detail?r=18376
Modified:
/branches/bleeding_edge/src/execution.cc
=======================================
--- /branches/bleeding_edge/src/execution.cc Thu Dec 19 16:45:58 2013 UTC
+++ /branches/bleeding_edge/src/execution.cc Thu Dec 19 17:09:38 2013 UTC
@@ -623,7 +623,8 @@
nesting_ = 0;
postpone_interrupts_nesting_ = 0;
interrupt_flags_ = 0;
- interrupt_callback_ = 0;
+ interrupt_callback_ = NULL;
+ interrupt_callback_data_ = NULL;
}
@@ -644,7 +645,8 @@
nesting_ = 0;
postpone_interrupts_nesting_ = 0;
interrupt_flags_ = 0;
- interrupt_callback_ = 0;
+ interrupt_callback_ = NULL;
+ interrupt_callback_data_ = NULL;
return should_set_stack_limits;
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.