From d69342cd67ee753e52e864e4847198fcbc14e468 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Sun, 23 Mar 2008 17:45:19 -0700 Subject: [PATCH] msi: Initialize the size parameter. --- dlls/msi/tests/source.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/msi/tests/source.c b/dlls/msi/tests/source.c index b109315980a..aef15ba782f 100644 --- a/dlls/msi/tests/source.c +++ b/dlls/msi/tests/source.c @@ -272,6 +272,7 @@ static void test_MsiSourceListGetInfo(void) ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %d\n", r); /* size is non-NULL while value is NULL */ + size = MAX_PATH; r = pMsiSourceListGetInfoA(prodcode, usersid, MSIINSTALLCONTEXT_USERUNMANAGED, MSICODE_PRODUCT, INSTALLPROPERTY_PACKAGENAME, NULL, &size); ok(r == ERROR_UNKNOWN_PRODUCT, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r); @@ -283,6 +284,7 @@ static void test_MsiSourceListGetInfo(void) ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res); /* user product key exists */ + size = MAX_PATH; r = pMsiSourceListGetInfoA(prodcode, usersid, MSIINSTALLCONTEXT_USERUNMANAGED, MSICODE_PRODUCT, INSTALLPROPERTY_PACKAGENAME, NULL, &size); ok(r == ERROR_BAD_CONFIGURATION, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r);