Commit 16b667ab authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Quoting fixes.

parent 721c11a5
...@@ -73,7 +73,7 @@ static UINT clone_properties(MSIDATABASE *db) ...@@ -73,7 +73,7 @@ static UINT clone_properties(MSIDATABASE *db)
'Y',' ','K','E','Y',' ','`','_','P','r','o','p','e','r','t','y','`',')',0}; 'Y',' ','K','E','Y',' ','`','_','P','r','o','p','e','r','t','y','`',')',0};
static const WCHAR Query[] = { static const WCHAR Query[] = {
'S','E','L','E','C','T',' ','*',' ', '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[] = { static const WCHAR Insert[] = {
'I','N','S','E','R','T',' ','i','n','t','o',' ', 'I','N','S','E','R','T',' ','i','n','t','o',' ',
'`','_','P','r','o','p','e','r','t','y','`',' ', '`','_','P','r','o','p','e','r','t','y','`',' ',
...@@ -747,9 +747,10 @@ static UINT MSI_GetPropertyRow(MSIPACKAGE *package, LPCWSTR szName, MSIRECORD ** ...@@ -747,9 +747,10 @@ static UINT MSI_GetPropertyRow(MSIPACKAGE *package, LPCWSTR szName, MSIRECORD **
MSIQUERY *view; MSIQUERY *view;
UINT rc, sz; UINT rc, sz;
static const WCHAR select[]= static const WCHAR select[]=
{'s','e','l','e','c','t',' ','V','a','l','u','e',' ','f','r','o','m',' ' {'S','E','L','E','C','T',' ','`','V','a','l','u','e','`',' ',
,'_','P','r','o','p','e','r','t','y',' ','w','h','e','r','e',' ' 'F','R','O','M',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
,'_','P','r','o','p','e','r','t','y','=','\'','%','s','\'',0}; ' ','W','H','E','R','E',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
'=','\'','%','s','\'',0};
LPWSTR query; LPWSTR query;
if (!szName) if (!szName)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment