From 4993bba7cdb03fab97738770fdde3b1d1fad978d Mon Sep 17 00:00:00 2001 From: "vitalyr@chromium.org" Date: Tue, 17 Aug 2010 17:46:23 +0000 Subject: [PATCH] Fix uninitialized field in Debug::ThreadInit(). Originally reported by Maxim.Mossienko on the isolates branch. Review URL: http://codereview.chromium.org/3164020 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5288 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/debug.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/debug.cc b/src/debug.cc index 5809854..1234196 100644 --- a/src/debug.cc +++ b/src/debug.cc @@ -551,6 +551,7 @@ void Debug::ThreadInit() { thread_local_.after_break_target_ = 0; thread_local_.debugger_entry_ = NULL; thread_local_.pending_interrupts_ = 0; + thread_local_.restarter_frame_function_pointer_ = NULL; } -- 2.7.4