mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +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:
parent
b10e292cf9
commit
d95215c8f3
2 changed files with 9 additions and 0 deletions
|
@ -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
|
2005-02-01 Alain Magloire
|
||||||
Part of Fix for PR 84165
|
Part of Fix for PR 84165
|
||||||
We check in the expression is a number and
|
We check in the expression is a number and
|
||||||
|
|
|
@ -285,6 +285,10 @@ public class MIParser {
|
||||||
buffer.delete(0, equal + 1);
|
buffer.delete(0, equal + 1);
|
||||||
MIValue value = processMIValue(buffer);
|
MIValue value = processMIValue(buffer);
|
||||||
result.setMIValue(value);
|
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 {
|
} else {
|
||||||
result.setVariable(buffer.toString());
|
result.setVariable(buffer.toString());
|
||||||
result.setMIValue(new MIConst()); // Empty string:???
|
result.setMIValue(new MIConst()); // Empty string:???
|
||||||
|
|
Loading…
Add table
Reference in a new issue