Commit 2485fb73 authored by Paul Querna's avatar Paul Querna
Browse files

Also init mutex_path in hm_create_config.

Suggested by: Ruediger Pluem


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@723679 13f79535-47bb-0310-9956-ffa450edef68
parent 568192e2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -491,6 +491,8 @@ static void *hm_create_config(apr_pool_t *p, server_rec *s)

    ctx->active = 0;
    ctx->storage_path = ap_server_root_relative(p, "logs/hb.dat");
    ctx->mutex_path = 
        ap_server_root_relative(p, apr_pstrcat(p, ctx->storage_path, ".hm-lock", NULL));

    return ctx;
}