Commit 1374ae93 authored by Joe Orton's avatar Joe Orton
Browse files

* modules/mappers/mod_userdir.c (get_suexec_id_doer): Fix allocation

size.

PR: 34588


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@165151 13f79535-47bb-0310-9956-ffa450edef68
parent 39366a03
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ static ap_unix_identity_t *get_suexec_id_doer(const request_rec *r)
        return NULL;
    }

    if ((ugid = apr_palloc(r->pool, sizeof(ap_unix_identity_t *))) == NULL) {
    if ((ugid = apr_palloc(r->pool, sizeof(*ugid))) == NULL) {
        return NULL;
    }