Merge pull request #99 from keywan-ghadami/breakpoints-range-fix

fix range violation on deleting breakpoints
This commit is contained in:
Vadim Lopatin 2016-01-16 22:21:09 +03:00
commit 883540e5e3
1 changed files with 1 additions and 1 deletions

View File

@ -383,10 +383,10 @@ class GDBInterface : ConsoleDebuggerInterface, TextCommandTarget {
if (!found) {
for (int j = i; j < _breakpoints.length - 1; j++)
_breakpoints[j] = _breakpoints[j + 1];
_breakpoints.length = _breakpoints.length - 1;
if (breakpointsToDelete.length)
breakpointsToDelete ~= ",";
breakpointsToDelete ~= _breakpoints[i].number;
_breakpoints.length = _breakpoints.length - 1;
}
}
// checking for added or updated breakpoints