mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Bug 192621: Address breakpoint markers are not shown in Disassembly view.
This commit is contained in:
parent
97f8327c2a
commit
22f4e30577
1 changed files with 1 additions and 1 deletions
|
@ -722,7 +722,7 @@ public class BreakpointManager extends Manager {
|
||||||
throw new CDIException(CdiResources.getString("cdi.BreakpointManager.Parsing_Error")); //$NON-NLS-1$
|
throw new CDIException(CdiResources.getString("cdi.BreakpointManager.Parsing_Error")); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
// Set
|
// Set
|
||||||
if (bkpt.getFile().length() > 0)
|
if (bkpt.getFile() != null && bkpt.getFile().length() > 0)
|
||||||
{
|
{
|
||||||
for (int j = 0; j < points.length; j++) {
|
for (int j = 0; j < points.length; j++) {
|
||||||
points[j].setFile(bkpt.getFile());
|
points[j].setFile(bkpt.getFile());
|
||||||
|
|
Loading…
Add table
Reference in a new issue