[PATCH 2/3] msi: Create the _Property table as a temporary table so that the properties aren't saved to the .msi file.

Robert Shearman rob at codeweavers.com
Tue Apr 24 06:32:22 CDT 2007


---
  dlls/msi/package.c |    8 +++++---
  1 files changed, 5 insertions(+), 3 deletions(-)
-------------- next part --------------
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 
        '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};


More information about the wine-patches mailing list