From 2a46821b823934712ceaec321552553341bd01b2 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Mon, 13 Nov 2006 16:34:47 +0900 Subject: [PATCH] msi: Fix an uninitialized variable in the test cases. --- dlls/msi/tests/suminfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/msi/tests/suminfo.c b/dlls/msi/tests/suminfo.c index 869495d29d4..3bcc125ea9b 100644 --- a/dlls/msi/tests/suminfo.c +++ b/dlls/msi/tests/suminfo.c @@ -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");