urlmon: Accept uppercase extension name in AsyncInstallDistributionUnit.
This commit is contained in:
parent
c28d619286
commit
f96fde3831
|
@ -447,7 +447,7 @@ static HRESULT install_file(install_ctx_t *ctx, const WCHAR *cache_file)
|
|||
if(!ext)
|
||||
ext = ptr;
|
||||
|
||||
if(!strcmpW(ext, cab_extW)) {
|
||||
if(!strcmpiW(ext, cab_extW)) {
|
||||
hres = install_cab_file(ctx);
|
||||
}else {
|
||||
FIXME("Unsupported extension %s\n", debugstr_w(ext));
|
||||
|
|
Loading…
Reference in New Issue