From c77395dc08ffa41da3b51278dcb8194951125d5e Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Thu, 13 Oct 2011 06:26:15 -0700 Subject: [PATCH] msi: Initialize variable to placate static analyzers. --- dlls/msi/msi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index c1ebe177970..ce0894025bf 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -350,7 +350,7 @@ done: static UINT MSI_ApplyPatchW(LPCWSTR szPatchPackage, LPCWSTR szProductCode, LPCWSTR szCommandLine) { - UINT r, i; + UINT i, r = ERROR_FUNCTION_FAILED; DWORD size; LPCWSTR cmd_ptr = szCommandLine; LPWSTR cmd, *codes = NULL; -- 2.11.4.GIT