Index: src/cpu-profiler.cc |
diff --git a/src/cpu-profiler.cc b/src/cpu-profiler.cc |
index ef519504a60e551eca7c040c0d8cccb746d855ab..082e2532ebce5363cef9d669e7494c8909f11e5b 100644 |
--- a/src/cpu-profiler.cc |
+++ b/src/cpu-profiler.cc |
@@ -187,6 +187,7 @@ void ProfilerEventsProcessor::AddCurrentStack() { |
sample->state = Isolate::Current()->current_vm_state(); |
sample->pc = reinterpret_cast<Address>(sample); // Not NULL. |
sample->tos = NULL; |
+ sample->has_external_callback = false; |
sample->frames_count = 0; |
for (StackTraceFrameIterator it; |
!it.done() && sample->frames_count < TickSample::kMaxFramesCount; |