summaryrefslogtreecommitdiffstats
path: root/.gdbinit
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2017-10-09 10:58:03 +0200
committerRuediger Pluem <rpluem@apache.org>2017-10-09 10:58:03 +0200
commitf72e5b64d0c57798951f3c4d4d27bb91fc627606 (patch)
tree710523640a1872ebd3cbbcc469f431a678bee62b /.gdbinit
parentmod_ssl: fix add_policy() w.r.t. OPENSSL_NO_COMP. PR 61592. (diff)
downloadapache2-f72e5b64d0c57798951f3c4d4d27bb91fc627606.tar.xz
apache2-f72e5b64d0c57798951f3c4d4d27bb91fc627606.zip
* 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