Commit 4c5c6c65 authored by Christophe Jaillet's avatar Christophe Jaillet
Browse files

Fix a compilation error when GPROF is defined.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1857859 13f79535-47bb-0310-9956-ffa450edef68
parent 51074ff0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1633,7 +1633,7 @@ static const char *set_gprof_dir(cmd_parms *cmd, void *dummy, const char *arg)
        return err;
    }

    conf->gprof_dir = arg;
    conf->gprof_dir = apr_pstrdup(cmd->pool, arg);
    return NULL;
}
#endif /*GPROF*/