diff options
author | Joe Orton <jorton@apache.org> | 2009-05-08 18:01:11 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2009-05-08 18:01:11 +0200 |
commit | 8d0a31ea154ac8f0eaaa06cccfde9ca108f5b34f (patch) | |
tree | de57ea5880fafdda7545a9815bdc09bbb67894d2 /.gdbinit | |
parent | Security fix for CVE-2009-1195: fix Options handling such that (diff) | |
download | apache2-8d0a31ea154ac8f0eaaa06cccfde9ca108f5b34f.tar.xz apache2-8d0a31ea154ac8f0eaaa06cccfde9ca108f5b34f.zip |
* .gdbinit (dump_table): Dump pointer value of table entries,
sometimes useful.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@773039 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ define dump_table if $t[$i].val == (void *)0L printf "[%u] '%s'=>NULL\n", $i, $t[$i].key else - printf "[%u] '%s'='%s'\n", $i, $t[$i].key, $t[$i].val + printf "[%u] '%s'='%s' [%p]\n", $i, $t[$i].key, $t[$i].val, $t[$i].val end set $i = $i + 1 end |