forked from qt-creator/qt-creator
Debugger: Remove spurious quotes in gdbbridge.py output
Breaks the parsing and might trigger an endless loop. Task-number: QTCREATORBUG-15352 Change-Id: I832d26441d8be3339b4de6d59a33c97f1d7124c5 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -471,7 +471,7 @@ class Dumper(DumperBase):
|
||||
self.put('type="%s",' % typeName) # str(type.unqualified()) ?
|
||||
|
||||
if self.currentValue.value is None:
|
||||
self.put('value="",encoding="%d","numchild="0",'
|
||||
self.put('value="",encoding="%d",numchild="0",'
|
||||
% SpecialNotAccessibleValue)
|
||||
else:
|
||||
if not self.currentValue.encoding is None:
|
||||
|
||||
Reference in New Issue
Block a user