diff options
author | Ruediger Pluem <rpluem@apache.org> | 2017-10-09 10:58:03 +0200 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2017-10-09 10:58:03 +0200 |
commit | f72e5b64d0c57798951f3c4d4d27bb91fc627606 (patch) | |
tree | 710523640a1872ebd3cbbcc469f431a678bee62b /.gdbinit | |
parent | mod_ssl: fix add_policy() w.r.t. OPENSSL_NO_COMP. PR 61592. (diff) | |
download | apache2-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-- | .gdbinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |