From: Greg Ames Date: Fri, 8 Feb 2002 14:47:10 +0000 (+0000) Subject: update CHANGES for an input side seg fault fix. X-Git-Tag: 2.0.32~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e67dd71c19d63cb7293e313694b7b1413045b2d1;p=thirdparty%2Fapache%2Fhttpd.git update CHANGES for an input side seg fault fix. also, get rid of a mainframe term that somehow leaked into a comment which might confuse people. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93334 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index d53db765c7e..81c30760764 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.32-dev + *) Fix seg faults that occur when what should be the httpd request line + starts with \r\n followed by garbage. [Greg Ames] + *) Allow statically linked support binaries with the new --enable-static-support flag, and enable this behavior in the binbuild script. Also add a new --enable-static-htdbm diff --git a/server/protocol.c b/server/protocol.c index 47016f9e7cc..854c8179e0a 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -593,7 +593,7 @@ static int read_request_line(request_rec *r) do { apr_status_t rv; - /* insure ap_rgetline allocates storage each time thru the loop + /* insure ap_rgetline allocates memory each time thru the loop * if there are empty lines */ r->the_request = NULL;