You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
Added patch to ignore unsupported flags for CoInternetSetFeatureEnabled.
This commit is contained in:
@@ -104,6 +104,7 @@ PATCHLIST := \
|
||||
shlwapi-PathIsDirectoryEmptyW.ok \
|
||||
shlwapi-StrCatChainW.ok \
|
||||
shlwapi-UrlCombine.ok \
|
||||
urlmon-CoInternetSetFeatureEnabled.ok \
|
||||
user32-Dialog_Paint_Event.ok \
|
||||
user32-DrawTextExW.ok \
|
||||
user32-GetRawInputDeviceList.ok \
|
||||
@@ -1601,6 +1602,21 @@ shlwapi-UrlCombine.ok:
|
||||
echo '+ { "Sebastian Lackner", "shlwapi: UrlCombineW workaround for relative paths.", 1 },'; \
|
||||
) > shlwapi-UrlCombine.ok
|
||||
|
||||
# Patchset urlmon-CoInternetSetFeatureEnabled
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
# | * [#35197] Ignore unsupported flags for CoInternetSetFeatureEnabled
|
||||
# |
|
||||
# | Modified files:
|
||||
# | * dlls/urlmon/internet.c
|
||||
# |
|
||||
.INTERMEDIATE: urlmon-CoInternetSetFeatureEnabled.ok
|
||||
urlmon-CoInternetSetFeatureEnabled.ok:
|
||||
$(call APPLY_FILE,urlmon-CoInternetSetFeatureEnabled/0001-urlmon-Ignore-unsupported-flags-for-CoInternetSetFea.patch)
|
||||
@( \
|
||||
echo '+ { "Bruno Jesus", "urlmon: Ignore unsupported flags for CoInternetSetFeatureEnabled.", 1 },'; \
|
||||
) > urlmon-CoInternetSetFeatureEnabled.ok
|
||||
|
||||
# Patchset user32-Dialog_Paint_Event
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
|
@@ -0,0 +1,28 @@
|
||||
From 15cc0b19149e0a1c811313ee1a97b82032cf41da Mon Sep 17 00:00:00 2001
|
||||
From: Bruno Jesus <00cpxxx@gmail.com>
|
||||
Date: Fri, 12 Dec 2014 05:16:14 +0100
|
||||
Subject: urlmon: Ignore unsupported flags for CoInternetSetFeatureEnabled
|
||||
|
||||
---
|
||||
dlls/urlmon/internet.c | 4 +---
|
||||
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||
|
||||
diff --git a/dlls/urlmon/internet.c b/dlls/urlmon/internet.c
|
||||
index e5d41b6..d7deccc 100644
|
||||
--- a/dlls/urlmon/internet.c
|
||||
+++ b/dlls/urlmon/internet.c
|
||||
@@ -536,10 +536,8 @@ static HRESULT set_internet_feature(INTERNETFEATURELIST feature, DWORD flags, BO
|
||||
if(feature >= FEATURE_ENTRY_COUNT)
|
||||
return E_FAIL;
|
||||
|
||||
- if(flags & ~supported_flags) {
|
||||
+ if(flags & ~supported_flags)
|
||||
FIXME("Unsupported flags: %08x\n", flags & ~supported_flags);
|
||||
- return E_NOTIMPL;
|
||||
- }
|
||||
|
||||
if(flags & SET_FEATURE_ON_PROCESS)
|
||||
set_feature_on_process(feature, enable);
|
||||
--
|
||||
2.1.3
|
||||
|
1
patches/urlmon-CoInternetSetFeatureEnabled/definition
Normal file
1
patches/urlmon-CoInternetSetFeatureEnabled/definition
Normal file
@@ -0,0 +1 @@
|
||||
Fixes: [35197] Ignore unsupported flags for CoInternetSetFeatureEnabled
|
Reference in New Issue
Block a user