diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2000-12-21 22:09:56 +0100 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2000-12-21 22:09:56 +0100 |
commit | 72a1fee16cf99604fd6455eb91301c834b348ad2 (patch) | |
tree | aeca6cf45f677db180038a89fac30bb326dab458 | |
parent | Last of the Win32 goodness I've noticed (diff) | |
download | apache2-72a1fee16cf99604fd6455eb91301c834b348ad2.tar.xz apache2-72a1fee16cf99604fd6455eb91301c834b348ad2.zip |
OPTIONS request crashed server, this fixes it
Submitted by: Joe Orton
Reviewed by: W Rowe
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87504 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/http/http_protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 594559b133..fdf2ed9932 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -2161,7 +2161,7 @@ int ap_send_http_options(request_rec *r) char *buff; ap_bucket *b; ap_bucket_brigade *bb; - apr_size_t len; + apr_size_t len = 0; header_struct h; if (r->assbackwards) |