From: Ryan Bloom Date: Sun, 26 Aug 2001 03:13:36 +0000 (+0000) Subject: We have to initialize the error_bucket before we can destroy it. X-Git-Tag: 2.0.25~53 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e12a21ff7f3d2ef6179b77535b7ad269fe7a1ef6;p=apache We have to initialize the error_bucket before we can destroy it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90674 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/error_bucket.c b/server/error_bucket.c index dc75a3d0db..460433f5f8 100644 --- a/server/error_bucket.c +++ b/server/error_bucket.c @@ -69,7 +69,7 @@ static apr_status_t error_read(apr_bucket *b, const char **str, } static void error_destroy(void *data) { - ap_bucket_error *h; + ap_bucket_error *h = data; apr_sms_free(h->sms, h); }