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

2005-03-07 Alain Magloire

Fix for 87230: base on  Jayaprakash ideas/patch
	On HP statck-list-frames answer contain not kosher strings
	* mi/org/eclipse/cdt/debug/mi/core/output/MIParser.java
This commit is contained in:
Alain Magloire 2005-03-07 23:21:31 +00:00
parent b10e292cf9
commit d95215c8f3
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2005-03-07 Alain Magloire
Fix for 87230: base on Jayaprakash ideas/patch
On HP statck-list-frames answer contain not kosher strings
* mi/org/eclipse/cdt/debug/mi/core/output/MIParser.java
2005-02-01 Alain Magloire
Part of Fix for PR 84165
We check in the expression is a number and

View file

@ -285,6 +285,10 @@ public class MIParser {
buffer.delete(0, equal + 1);
MIValue value = processMIValue(buffer);
result.setMIValue(value);
} else if(buffer.length()>0 && buffer.charAt(0)=='"') {
// This an error but we just swallow it and move on.
MIValue value = processMIValue(buffer);
result.setMIValue(value);
} else {
result.setVariable(buffer.toString());
result.setMIValue(new MIConst()); // Empty string:???