mirror of
https://github.com/reactos/reactos.git
synced 2026-07-01 03:24:29 +08:00
[WINESYNC] msi: Handle the remote case in MsiSummaryInfoGetProperty.
This patch fixes the regression introduced by bf5589311de8ac2c74e3bd73bef32337a2ce8df2. Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id ce2ebd72750ca85e7307372de1a73831ad9e73a8 by Dmitry Timoshkov <dmitry@baikal.ru>
This commit is contained in:
@@ -464,7 +464,6 @@ static void test_db(MSIHANDLE hinst)
|
||||
ok(hinst, count == 5, "got %u\n", count);
|
||||
|
||||
r = MsiSummaryInfoGetPropertyA(suminfo, 0, NULL, NULL, NULL, NULL, NULL);
|
||||
todo_wine
|
||||
ok(hinst, r == RPC_X_NULL_REF_POINTER, "got %u\n", r);
|
||||
|
||||
type = 0xdeadbeef;
|
||||
@@ -472,11 +471,8 @@ todo_wine
|
||||
strcpy(buffer, "deadbeef");
|
||||
sz = sizeof(buffer);
|
||||
r = MsiSummaryInfoGetPropertyA(suminfo, PID_AUTHOR, &type, &int_value, &ft, buffer, &sz);
|
||||
todo_wine
|
||||
ok(hinst, !r, "got %u\n", r);
|
||||
todo_wine
|
||||
ok(hinst, type == 0, "got %u\n", type);
|
||||
todo_wine
|
||||
ok(hinst, int_value == 0, "got %u\n", int_value);
|
||||
ok(hinst, sz == sizeof(buffer), "got %u\n", sz);
|
||||
ok(hinst, !lstrcmpA(buffer, "deadbeef"), "got %s\n", buffer);
|
||||
@@ -486,11 +482,8 @@ todo_wine
|
||||
strcpy(buffer, "deadbeef");
|
||||
sz = sizeof(buffer);
|
||||
r = MsiSummaryInfoGetPropertyA(suminfo, PID_CODEPAGE, &type, &int_value, &ft, buffer, &sz);
|
||||
todo_wine
|
||||
ok(hinst, !r, "got %u\n", r);
|
||||
todo_wine
|
||||
ok(hinst, type == 0, "got %u\n", type);
|
||||
todo_wine
|
||||
ok(hinst, int_value == 0, "got %u\n", int_value);
|
||||
ok(hinst, sz == sizeof(buffer), "got %u\n", sz);
|
||||
ok(hinst, !lstrcmpA(buffer, "deadbeef"), "got %s\n", buffer);
|
||||
|
||||
Reference in New Issue
Block a user