Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
chakrashim: fixed missing conditional body
Browse files Browse the repository at this point in the history
PR-URL: #250
Reviewed-By: Kunal Pathak <[email protected]>
Reviewed-By: Sandeep Agarwal <[email protected]>
  • Loading branch information
kfarnung committed May 19, 2017
1 parent 65289ed commit b60c024
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 b60c024

Please sign in to comment.