Skip to content

Commit 06a6d6a

Browse files
committed
fixing BADLY broken breakpoint handling due to erroniuous refactoring in d5d180a :-(
1 parent 8c5812b commit 06a6d6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Debugger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2614,7 +2614,7 @@ void Debugger::resumeExecution(ExceptionResume pass_exception, DebugMode mode, R
26142614

26152615
// if we are on a breakpoint, disable it
26162616
std::shared_ptr<IBreakpoint> bp;
2617-
if (flags == ResumeFlag::Forced) {
2617+
if (flags != ResumeFlag::Forced) {
26182618
State state;
26192619
thread->getState(&state);
26202620
bp = edb::v1::debugger_core->findBreakpoint(state.instructionPointer());

0 commit comments

Comments
 (0)