Commit 955f1212 authored by Andre Malo's avatar Andre Malo
Browse files

another warning.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105707 13f79535-47bb-0310-9956-ffa450edef68
parent a0379b48
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -473,7 +473,11 @@ static int process_dir(char *path, apr_pool_t *pool)
    path[baselen] = '\0';

    for (i = apr_hash_first(p, h); i && !interrupted; i = apr_hash_next(i)) {
         apr_hash_this(i, NULL, NULL, (void **)(&d));
        void *hvalue;

        apr_hash_this(i, NULL, NULL, &hvalue);
        d = hvalue;

        switch(d->type) {
        case HEADERDATA:
            nextpath = apr_pstrcat(p, path, "/", d->basename,