Commit 2a46821b authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msi: Fix an uninitialized variable in the test cases.

parent 0b7a17d2
......@@ -391,6 +391,7 @@ static void test_summary_binary(void)
ok( sz == 0, "length wrong\n");
}
ival = -1;
r = MsiSummaryInfoGetProperty(hsuminfo, PID_WORDCOUNT, &type, &ival, NULL, NULL, NULL);
ok(r == ERROR_SUCCESS, "MsiSummaryInfoGetProperty failed\n");
todo_wine ok( ival == 0, "value incorrect\n");
......
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