change the length of the array after accessing that array

This commit is contained in:
Keywan Ghadami 2016-01-16 14:50:46 +01:00
parent 4fc802f742
commit 9e2ad854ce
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