From: Ruediger Pluem Date: Mon, 18 Sep 2017 07:23:43 +0000 (+0000) Subject: * Correctly dump pools that have no tag X-Git-Tag: 2.5.0-alpha~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbfd1418734fc61562c850ea3a21be1722610454;p=thirdparty%2Fapache%2Fhttpd.git * Correctly dump pools that have no tag git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1808671 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/.gdbinit b/.gdbinit index e28763d7d3c..0e2d44ecd5c 100644 --- a/.gdbinit +++ b/.gdbinit @@ -404,7 +404,13 @@ define dump_one_pool set $done = 1 end end - printf "Pool '%s' [%p]: %d/%d free (%d blocks)\n", $p->tag, $p, $free, $size, $nodes + printf "Pool '" + if $p->tag + printf "%s", $p->tag + else + printf "no tag" + end + printf "' [%p]: %d/%d free (%d blocks)\n", $p, $free, $size, $nodes end # Set sane defaults for common signals: