Module: wine Branch: master Commit: 22cd120d5d036475f77ab0de251b3260e7b21c8e URL: http://source.winehq.org/git/wine.git/?a=commit;h=22cd120d5d036475f77ab0de25...
Author: Rob Shearman rob@codeweavers.com Date: Tue Apr 24 12:32:22 2007 +0100
msi: Create the _Property table as a temporary table so that the properties aren't saved to the .msi file.
---
dlls/msi/package.c | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/dlls/msi/package.c b/dlls/msi/package.c index 767ebcf..e04e19c 100644 --- a/dlls/msi/package.c +++ b/dlls/msi/package.c @@ -66,9 +66,11 @@ static UINT clone_properties(MSIPACKAGE *package) 'C','R','E','A','T','E',' ','T','A','B','L','E',' ','`','_','P','r','o', 'p','e','r','t','y','`',' ','(',' ','`','_','P','r','o','p','e','r','t', 'y','`',' ','C','H','A','R','(','5','6',')',' ','N','O','T',' ','N','U', - 'L','L',',',' ','`','V','a','l','u','e','`',' ','C','H','A','R','(','9', - '8',')',' ','N','O','T',' ','N','U','L','L',' ','P','R','I','M','A','R', - 'Y',' ','K','E','Y',' ','`','_','P','r','o','p','e','r','t','y','`',')',0}; + 'L','L',' ','T','E','M','P','O','R','A','R','Y',',',' ','`','V','a','l', + 'u','e','`',' ','C','H','A','R','(','9','8',')',' ','N','O','T',' ','N', + 'U','L','L',' ','T','E','M','P','O','R','A','R','Y',' ','P','R','I','M', + 'A','R','Y',' ','K','E','Y',' ','`','_','P','r','o','p','e','r','t','y', + '`',')',0}; static const WCHAR Query[] = { 'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ','`','P','r','o','p','e','r','t','y','`',0};