forked from qt-creator/qt-creator
Debugger: Pass uninitialized variables to the python dumpers
Reduces accessing uninitialized memory Change-Id: I025e9070b9b17a806237619b484cb27230e7f494 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -317,6 +317,8 @@ class DumperBase:
|
||||
self.nativeMixed = int(args.get('nativemixed', '0'))
|
||||
self.autoDerefPointers = int(args.get('autoderef', '0'))
|
||||
self.partialVariable = args.get('partialvar', '')
|
||||
self.uninitialized = args.get('uninitialized', [])
|
||||
self.uninitialized = list(map(lambda x: self.hexdecode(x), self.uninitialized))
|
||||
self.partialUpdate = int(args.get('partial', '0'))
|
||||
self.fallbackQtVersion = 0x50200
|
||||
#warn('NAMESPACE: "%s"' % self.qtNamespace())
|
||||
|
||||
Reference in New Issue
Block a user