From d00fba8e2bcae17f0873b88f4ee310c39c7bf8d1 Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Thu, 28 Jan 2010 15:21:16 +0100
Subject: [PATCH] debugger: work around 'optimized out' function parameters

---
 share/qtcreator/gdbmacros/dumper.py | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py
index 54a69327424..c10437e69c0 100644
--- a/share/qtcreator/gdbmacros/dumper.py
+++ b/share/qtcreator/gdbmacros/dumper.py
@@ -546,9 +546,11 @@ class FrameCommand(gdb.Command):
                 # Special handling for char** argv.
                 n = 0
                 p = item.value
-                while not isNull(p.dereference()) and n <= 100:
-                    p += 1
-                    n += 1
+                # p is 0 for "optimized out" cases.
+                if not isNull(p):
+                    while not isNull(p.dereference()) and n <= 100:
+                        p += 1
+                        n += 1
 
                 d.beginHash()
                 d.put('iname="%s",' % item.iname)
-- 
GitLab