msi: Fix an uninitialized variable in the test cases.
This commit is contained in:
parent
0b7a17d282
commit
2a46821b82
|
@ -391,6 +391,7 @@ static void test_summary_binary(void)
|
||||||
ok( sz == 0, "length wrong\n");
|
ok( sz == 0, "length wrong\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ival = -1;
|
||||||
r = MsiSummaryInfoGetProperty(hsuminfo, PID_WORDCOUNT, &type, &ival, NULL, NULL, NULL);
|
r = MsiSummaryInfoGetProperty(hsuminfo, PID_WORDCOUNT, &type, &ival, NULL, NULL, NULL);
|
||||||
ok(r == ERROR_SUCCESS, "MsiSummaryInfoGetProperty failed\n");
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoGetProperty failed\n");
|
||||||
todo_wine ok( ival == 0, "value incorrect\n");
|
todo_wine ok( ival == 0, "value incorrect\n");
|
||||||
|
|
Loading…
Reference in New Issue