Commit 1bb47318 authored by Ryan Bloom's avatar Ryan Bloom
Browse files

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
parent 459894ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}