Revert "msi: Correctly parse double quotes in the token value.".

This reverts commit 42caac841e.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Dmitry Timoshkov 2015-11-03 18:08:08 +08:00 committed by Alexandre Julliard
parent 4db8fc394d
commit 2d7f00c8d3
2 changed files with 3 additions and 1 deletions

View File

@ -245,7 +245,7 @@ static int parse_prop( const WCHAR *str, WCHAR *value, int *quotes )
{
case '"':
state = state_quote;
if (in_quotes && p[1] != '\"') count--;
if (in_quotes) count--;
else count++;
break;
case ' ':

View File

@ -4718,7 +4718,9 @@ static void test_propcase(void)
r = MsiInstallProductA(msifile, "BLAHBLAH=\"Copyright \"\"My Company\"\" 2015\" MyProp=42");
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
todo_wine
ok(delete_pf("msitest\\augustus", TRUE), "File not installed\n");
todo_wine
ok(delete_pf("msitest", FALSE), "Directory not created\n");
error: