Commit c44e0e0f authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Hopefully, address the last edge case where status may 
  be uninitialized.  Asserts in non-debug builds are bad things,
  anyways, so this is probably more correct.  This should fix
  -Werror compile warning observed by Joe Orton.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@231046 13f79535-47bb-0310-9956-ffa450edef68
parent f93a11a4
Loading
Loading
Loading
Loading
+2 −1
Changes for modules/proxy/mod_proxy_http.c: 2 added lines, 1 removed line.
Original line number Diff line number Diff line
@@ -949,7 +949,8 @@ skip_body:
                                              || (bytes_read > 0));
        break;
    default:
        ap_assert(1 != 1);
        /* shouldn't be possible */
        status = APR_EINVAL;
        break;
    }