1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

Bug 192621: Address breakpoint markers are not shown in Disassembly view.

This commit is contained in:
Mikhail Khodjaiants 2007-06-14 10:49:59 +00:00
parent 97f8327c2a
commit 22f4e30577

View file

@ -722,7 +722,7 @@ public class BreakpointManager extends Manager {
throw new CDIException(CdiResources.getString("cdi.BreakpointManager.Parsing_Error")); //$NON-NLS-1$
}
// Set
if (bkpt.getFile().length() > 0)
if (bkpt.getFile() != null && bkpt.getFile().length() > 0)
{
for (int j = 0; j < points.length; j++) {
points[j].setFile(bkpt.getFile());