summaryrefslogtreecommitdiff
path: root/.gdbinit
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2017-10-09 08:58:03 +0000
committerRuediger Pluem <rpluem@apache.org>2017-10-09 08:58:03 +0000
commitf72e5b64d0c57798951f3c4d4d27bb91fc627606 (patch)
tree710523640a1872ebd3cbbcc469f431a678bee62b /.gdbinit
parent45e94836343f10f2a21569dc1f10a7063efacf98 (diff)
downloadhttpd-f72e5b64d0c57798951f3c4d4d27bb91fc627606.tar.gz
* It needs to be the dereferenced node
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1811540 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gdbinit b/.gdbinit
index 042df453cc..494ff829d9 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -444,7 +444,7 @@ class DumpPoolAndChilds (gdb.Command):
if node != 0:
while node != 0:
noded = node.dereference()
- kb = kb + (4 << int(node['index']))
+ kb = kb + (4 << int(noded['index']))
node = noded['next']
i = i + 1
self.total_free_blocks[salloc] = kb