Debugger: Free watchpoints in addition to breakpoints

This commit is contained in:
Jeffrey Pfau 2015-04-22 21:24:56 -07:00
parent 2666c77837
commit c4aedfa69a
2 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ Bugfixes:
Misc:
- Qt: Show multiplayer numbers in window title
- Qt: Handle saving input settings better
- Debugger: Free watchpoints in addition to breakpoints
0.2.0: (2015-04-03)
Features:

View File

@ -519,6 +519,7 @@ static void _clearBreakpoint(struct CLIDebugger* debugger, struct CLIDebugVector
}
uint32_t address = dv->intValue;
ARMDebuggerClearBreakpoint(&debugger->d, address);
ARMDebuggerClearWatchpoint(&debugger->d, address);
}
static void _setWatchpoint(struct CLIDebugger* debugger, struct CLIDebugVector* dv) {