1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

Ensure variable is initialised before use.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1134132 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Graham Leggett
2011-06-09 23:45:37 +00:00
parent d39848b2b5
commit 48b266ccd5

View File

@@ -72,7 +72,7 @@ static apr_status_t data_out_filter(ap_filter_t *f, apr_bucket_brigade *bb)
/* first time in? create a context */
if (!ctx) {
char *type;
char *charset;
char *charset = NULL;
char *end;
const char *content_length;