ARM Debugger: Fix clearing software breakpoints

This commit is contained in:
Jeffrey Pfau 2016-09-17 12:41:31 -07:00
parent d1e2f2be6b
commit 805ef9efdd
1 changed files with 3 additions and 1 deletions

View File

@ -152,7 +152,9 @@ void ARMDebuggerClearSoftwareBreakpoint(struct mDebuggerPlatform* d, uint32_t ad
breakpoint = NULL;
}
debugger->clearSoftwareBreakpoint(debugger, address, breakpoint->sw.mode, breakpoint->sw.opcode);
if (breakpoint) {
debugger->clearSoftwareBreakpoint(debugger, address, breakpoint->sw.mode, breakpoint->sw.opcode);
}
}
static void ARMDebuggerSetBreakpoint(struct mDebuggerPlatform* d, uint32_t address) {