MSI: more quoting fixes

Aric Stewart aric at codeweavers.com
Thu May 19 10:12:25 CDT 2005


Quoting fixes to package.c
-------------- next part --------------
Index: dlls/msi/package.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/package.c,v
retrieving revision 1.40
diff -u -r1.40 package.c
--- dlls/msi/package.c	19 May 2005 11:15:37 -0000	1.40
+++ dlls/msi/package.c	19 May 2005 15:09:56 -0000
@@ -73,7 +73,7 @@
        '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};
+       'F','R','O','M',' ','`','P','r','o','p','e','r','t','y','`',0};
     static const WCHAR Insert[] = {
        'I','N','S','E','R','T',' ','i','n','t','o',' ',
        '`','_','P','r','o','p','e','r','t','y','`',' ',
@@ -747,9 +747,10 @@
     MSIQUERY *view;
     UINT rc, sz;
     static const WCHAR select[]=
-    {'s','e','l','e','c','t',' ','V','a','l','u','e',' ','f','r','o','m',' '
-     ,'_','P','r','o','p','e','r','t','y',' ','w','h','e','r','e',' '
-     ,'_','P','r','o','p','e','r','t','y','=','\'','%','s','\'',0};
+    {'S','E','L','E','C','T',' ','`','V','a','l','u','e','`',' ',
+     'F','R','O','M',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
+     ' ','W','H','E','R','E',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
+     '=','\'','%','s','\'',0};
     LPWSTR query;
 
     if (!szName)


More information about the wine-patches mailing list