Qian Hong : urlmon: Accept uppercase extension name in AsyncInstallDistributionUnit.

Alexandre Julliard julliard at winehq.org
Wed Nov 13 13:34:40 CST 2013


Module: wine
Branch: master
Commit: f96fde38316a9b9cf51c7b06e86bd2403a8cce55
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f96fde38316a9b9cf51c7b06e86bd2403a8cce55

Author: Qian Hong <qhong at codeweavers.com>
Date:   Wed Nov 13 06:31:17 2013 +0800

urlmon: Accept uppercase extension name in AsyncInstallDistributionUnit.

---

 dlls/urlmon/axinstall.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/urlmon/axinstall.c b/dlls/urlmon/axinstall.c
index ca1aef6..7ee7d94 100644
--- a/dlls/urlmon/axinstall.c
+++ b/dlls/urlmon/axinstall.c
@@ -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));




More information about the wine-cvs mailing list