1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

2005-06-28 Alain Magloire

Fix PR 94612: addr =<PENDING>
	* mi/org/eclipse/cdt/debug/mi/core/MIFormat.java
This commit is contained in:
Alain Magloire 2005-06-28 19:49:08 +00:00
parent e11007b7c0
commit 82427c42a6
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-06-28 Alain Magloire
Fix PR 94612: addr =<PENDING>
* mi/org/eclipse/cdt/debug/mi/core/MIFormat.java
2005-06-27 Alain Magloire
New command from newer version of gdb "set breakpoint pending"
better handling of the breakpoint while the target is running.

View file

@ -96,6 +96,12 @@ public final class MIFormat {
if (negative) {
address = "-" + address; //$NON-NLS-1$
}
return new BigInteger(address, radix);
try {
return new BigInteger(address, radix);
} catch (NumberFormatException e) {
// ...
// What can we do ???
}
return BigInteger.ZERO;
}
}