Module: wine Branch: refs/heads/master Commit: 35f9a4797f52ae5e697c096015a9bafdd6a2c52e URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=35f9a4797f52ae5e697c0960...
Author: Dan Kegel dank@kegel.com Date: Sat Apr 22 11:31:12 2006 -0700
msi: Fix missing case in MsiSourceListAddSourceEx.
---
dlls/msi/source.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/msi/source.c b/dlls/msi/source.c index 779bbc4..cb73ec8 100644 --- a/dlls/msi/source.c +++ b/dlls/msi/source.c @@ -499,6 +499,8 @@ UINT WINAPI MsiSourceListAddSourceExW( L rc = OpenNetworkSubkey(sourcekey, &typekey, TRUE); else if (dwOptions & MSISOURCETYPE_URL) rc = OpenURLSubkey(sourcekey, &typekey, TRUE); + else if (dwOptions & MSISOURCETYPE_MEDIA) + rc = OpenMediaSubkey(sourcekey, &typekey, TRUE); else { ERR("unknown media type: %08lx\n", dwOptions);