Commit e83d1400 authored by Ruediger Pluem's avatar Ruediger Pluem
Browse files

* Fix a null pointer dereference in dav_method_mkcol during the handling of

  errors from dav_auto_checkin.

Submitted by: Ghassan Misherghi <ghassanm ucdavis.edu>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@331041 13f79535-47bb-0310-9956-ffa450edef68
parent 2c0466fa
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -2,6 +2,10 @@
Changes with Apache 2.3.0
  [Remove entries to the current 2.0 and 2.2 section below, when backported]
  *) mod_dav: Fix a null pointer dereference in an error code path during the
     handling of MKCOL.
     [Ruediger Pluem, Ghassan Misherghi <ghassanm ucdavis.edu>]
  *) Fix DESTDIR=... installation when using bundled copy of APR.
     [Torsten Foertsch <torsten.foertsch gmx.net>]
+1 −1
Original line number Diff line number Diff line
@@ -2508,7 +2508,7 @@ static int dav_method_mkcol(request_rec *r)
    }
    if (err2 != NULL) {
        /* just log a warning */
        err = dav_push_error(r->pool, err->status, 0,
        err = dav_push_error(r->pool, err2->status, 0,
                             "The MKCOL was successful, but there "
                             "was a problem automatically checking in "
                             "the parent collection.",