From 3f00006f1f14dfabfdc7f85687d8777b8334523e Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Wed, 3 Sep 2008 21:35:07 -0500 Subject: [PATCH] msi: Source for new patch files can only be compressed. --- dlls/msi/action.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 8cd5923bdbe..8a8efe75d45 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -1481,7 +1481,8 @@ static UINT load_file(MSIRECORD *row, LPVOID param) /* if the compressed bits are not set in the file attributes, * then read the information from the package word count property */ - if (file->Attributes & msidbFileAttributesCompressed) + if (file->Attributes & + (msidbFileAttributesCompressed | msidbFileAttributesPatchAdded)) { file->IsCompressed = TRUE; } -- 2.11.4.GIT