Skip to content

Commit

Permalink
Merge r1901504 from trunk:
Browse files Browse the repository at this point in the history
mod_isapi: use consistent filename


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1901505 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
covener committed Jun 1, 2022
1 parent 3a56175 commit 801e414
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/arch/win32/mod_isapi.c
Expand Up @@ -976,11 +976,11 @@ static int APR_THREAD_FUNC regfnServerSupportFunction(isapi_cid *cid,
return 0;
}

len = (apr_uint32_t)strlen(r->filename);
len = (apr_uint32_t)strlen(subreq->filename);

if ((subreq->finfo.filetype == APR_DIR)
&& (!subreq->path_info)
&& (file[len - 1] != '/'))
&& (subreq->filename[len - 1] != '/'))
file = apr_pstrcat(cid->r->pool, subreq->filename, "/", NULL);
else
file = apr_pstrcat(cid->r->pool, subreq->filename,
Expand Down

0 comments on commit 801e414

Please sign in to comment.