Commit 49bdb815 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

urlmon: Ignore unsupported flags for CoInternetSetFeatureEnabled.

parent fd9d4b62
...@@ -536,10 +536,8 @@ static HRESULT set_internet_feature(INTERNETFEATURELIST feature, DWORD flags, BO ...@@ -536,10 +536,8 @@ static HRESULT set_internet_feature(INTERNETFEATURELIST feature, DWORD flags, BO
if(feature >= FEATURE_ENTRY_COUNT) if(feature >= FEATURE_ENTRY_COUNT)
return E_FAIL; return E_FAIL;
if(flags & ~supported_flags) { if(flags & ~supported_flags)
FIXME("Unsupported flags: %08x\n", flags & ~supported_flags); FIXME("Unsupported flags: %08x\n", flags & ~supported_flags);
return E_NOTIMPL;
}
if(flags & SET_FEATURE_ON_PROCESS) if(flags & SET_FEATURE_ON_PROCESS)
set_feature_on_process(feature, enable); set_feature_on_process(feature, enable);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment