Zebediah Figura : kernelbase: Prepend the scheme even if the requested URL part is empty.

Alexandre Julliard julliard at winehq.org
Thu Feb 17 15:33:57 CST 2022


Module: wine
Branch: master
Commit: 439600d5ce276d8d42c6ea2b2cd69d5117938b63
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=439600d5ce276d8d42c6ea2b2cd69d5117938b63

Author: Zebediah Figura <zfigura at codeweavers.com>
Date:   Wed Feb 16 20:31:43 2022 -0600

kernelbase: Prepend the scheme even if the requested URL part is empty.

Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/kernelbase/path.c   | 47 ++++++-----------------------------------------
 dlls/shlwapi/tests/url.c |  2 +-
 2 files changed, 7 insertions(+), 42 deletions(-)

diff --git a/dlls/kernelbase/path.c b/dlls/kernelbase/path.c
index 0dba2098391..f83c68e14f5 100644
--- a/dlls/kernelbase/path.c
+++ b/dlls/kernelbase/path.c
@@ -4277,12 +4277,6 @@ HRESULT WINAPI UrlGetPartW(const WCHAR *url, WCHAR *out, DWORD *out_len, DWORD p
     {
     case URL_PART_SCHEME:
         flags &= ~URL_PARTFLAG_KEEPSCHEME;
-        if (!pl.scheme_len)
-        {
-            *out = '\0';
-            *out_len = 0;
-            return S_FALSE;
-        }
         addr = pl.scheme;
         size = pl.scheme_len;
         break;
@@ -4290,30 +4284,19 @@ HRESULT WINAPI UrlGetPartW(const WCHAR *url, WCHAR *out, DWORD *out_len, DWORD p
     case URL_PART_HOSTNAME:
         if (scheme == URL_SCHEME_FILE && (!pl.hostname_len || (pl.hostname_len == 1 && *(pl.hostname + 1) == ':')))
         {
-            *out = '\0';
-            *out_len = 0;
-            return S_FALSE;
+            addr = NULL;
+            size = 0;
         }
-
-        if (!pl.hostname_len)
+        else
         {
-            *out = '\0';
-            *out_len = 0;
-            return S_FALSE;
+            addr = pl.hostname;
+            size = pl.hostname_len;
         }
-        addr = pl.hostname;
-        size = pl.hostname_len;
         break;
 
     case URL_PART_USERNAME:
         if (!pl.username)
             return E_INVALIDARG;
-        if (!pl.username_len)
-        {
-            *out = '\0';
-            *out_len = 0;
-            return S_FALSE;
-        }
         addr = pl.username;
         size = pl.username_len;
         break;
@@ -4321,12 +4304,6 @@ HRESULT WINAPI UrlGetPartW(const WCHAR *url, WCHAR *out, DWORD *out_len, DWORD p
     case URL_PART_PASSWORD:
         if (!pl.password)
             return E_INVALIDARG;
-        if (!pl.password_len)
-        {
-            *out = '\0';
-            *out_len = 0;
-            return S_FALSE;
-        }
         addr = pl.password;
         size = pl.password_len;
         break;
@@ -4334,24 +4311,12 @@ HRESULT WINAPI UrlGetPartW(const WCHAR *url, WCHAR *out, DWORD *out_len, DWORD p
     case URL_PART_PORT:
         if (!pl.port)
             return E_INVALIDARG;
-        if (!pl.port_len)
-        {
-            *out = '\0';
-            *out_len = 0;
-            return S_FALSE;
-        }
         addr = pl.port;
         size = pl.port_len;
         break;
 
     case URL_PART_QUERY:
         flags &= ~URL_PARTFLAG_KEEPSCHEME;
-        if (!pl.query_len)
-        {
-            *out = '\0';
-            *out_len = 0;
-            return S_FALSE;
-        }
         addr = pl.query;
         size = pl.query_len;
         break;
@@ -4401,7 +4366,7 @@ HRESULT WINAPI UrlGetPartW(const WCHAR *url, WCHAR *out, DWORD *out_len, DWORD p
     }
     TRACE("len=%ld %s\n", *out_len, wine_dbgstr_w(out));
 
-    return S_OK;
+    return *out_len ? S_OK : S_FALSE;
 }
 
 BOOL WINAPI UrlIsA(const char *url, URLIS Urlis)
diff --git a/dlls/shlwapi/tests/url.c b/dlls/shlwapi/tests/url.c
index 5c28142bc42..c6c7e26cec6 100644
--- a/dlls/shlwapi/tests/url.c
+++ b/dlls/shlwapi/tests/url.c
@@ -681,7 +681,7 @@ static void test_UrlGetPart(void)
         {"http://host: !\"$%&'()*+,-.;<=>[]^_`{|~}\x01\x7f\xff", URL_PART_PORT, 0, S_OK, " !\"$%&'()*+,-.;<=>[]^_`{|~}\x01\x7f\xff"},
 
         {"http:///index.html", URL_PART_HOSTNAME, 0, S_FALSE, ""},
-        {"http:///index.html", URL_PART_HOSTNAME, URL_PARTFLAG_KEEPSCHEME, S_OK, "http:", .todo_hr = TRUE},
+        {"http:///index.html", URL_PART_HOSTNAME, URL_PARTFLAG_KEEPSCHEME, S_OK, "http:"},
         {"file://h o s t/c:/windows/file", URL_PART_HOSTNAME, 0, S_OK, "h o s t"},
         {"file://h o s t/c:/windows/file", URL_PART_HOSTNAME, URL_PARTFLAG_KEEPSCHEME, S_OK, "h o s t"},
         {"file://foo:bar@localhost:21/file?query=x", URL_PART_USERNAME, 0, E_FAIL, .todo_hr = TRUE},




More information about the wine-cvs mailing list