diff options
author | Cliff Woolley <jwoolley@apache.org> | 2002-04-24 00:15:56 +0200 |
---|---|---|
committer | Cliff Woolley <jwoolley@apache.org> | 2002-04-24 00:15:56 +0200 |
commit | 0523f0671ac72f5f7834d3d89df69e1ce0adcd26 (patch) | |
tree | 9b993caa8f6a52584941ba327b6699f917d64b60 /.gdbinit | |
parent | The force-response-1.0 and downgrade-1.0 checks were swapped. This (diff) | |
download | apache2-0523f0671ac72f5f7834d3d89df69e1ce0adcd26.tar.xz apache2-0523f0671ac72f5f7834d3d89df69e1ce0adcd26.zip |
Whoops, NULL is a macro, hence not available here
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94772 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ define dump_bucket_ex if $bucket->type == &apr_bucket_type_pool set $refcount = ((apr_bucket_refcount *)$bucket->data)->refcount set $p = (apr_bucket_pool *)$bucket->data - if $p->pool != NULL + if !$p->pool set $p = (apr_bucket_heap *)$bucket->data end set $data = $p->base+$bucket->start |