34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
|
|
From 258698607821acfda8f90d9d17e44d18c30f8d77 Mon Sep 17 00:00:00 2001
|
||
|
|
From: covener <covener@apache.org>
|
||
|
|
Date: Wed, 1 Ju0 2022 12:37:44 UTC
|
||
|
|
Subject: [PATCH] mod_isapi:use consistent filename
|
||
|
|
|
||
|
|
Conflict:NA
|
||
|
|
Reference:https://github.com/apache/httpd/commit/258698607821acfda8f90d9d17e44d18c30f8d77
|
||
|
|
|
||
|
|
---
|
||
|
|
modules/arch/win32/mod_isapi.c | 4 ++--
|
||
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/modules/arch/win32/mod_isapi.c b/modules/arch/win32/mod_isapi.c
|
||
|
|
index 5592a57..a9816e5 100644
|
||
|
|
--- a/modules/arch/win32/mod_isapi.c
|
||
|
|
+++ b/modules/arch/win32/mod_isapi.c
|
||
|
|
@@ -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,
|
||
|
|
--
|
||
|
|
2.23.0
|
||
|
|
|