Skip to content

Commit

Permalink
chakrashim: fixed missing conditional body
Browse files Browse the repository at this point in the history
PR-URL: nodejs#250
Reviewed-By: Kunal Pathak <Kunal.Pathak@microsoft.com>
Reviewed-By: Sandeep Agarwal <saagarwa@microsoft.com>
  • Loading branch information
kfarnung committed May 23, 2017
1 parent 3b369a9 commit 7d8f8f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deps/chakrashim/src/inspector/v8-debugger.cc
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,8 @@ void V8Debugger::HandleBreak(JsValueRef eventData) {
if (hasUncaught) {
if (jsrt::InspectorHelpers::GetBoolProperty(eventData, "uncaught",
&isUncaught) != JsNoError) {

assert(false);
return;
}
}

Expand Down

0 comments on commit 7d8f8f9

Please sign in to comment.