Commit 1cfc88a5 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

msi: Initialize info and patch variables (Coverity 923).

parent 454dd2ed
...@@ -303,7 +303,7 @@ done: ...@@ -303,7 +303,7 @@ done:
static UINT MSI_ApplyPatchW(LPCWSTR szPatchPackage, LPCWSTR szProductCode, LPCWSTR szCommandLine) static UINT MSI_ApplyPatchW(LPCWSTR szPatchPackage, LPCWSTR szProductCode, LPCWSTR szCommandLine)
{ {
MSIHANDLE patch, info; MSIHANDLE patch = 0, info = 0;
UINT r, type; UINT r, type;
DWORD size = 0; DWORD size = 0;
LPCWSTR cmd_ptr = szCommandLine; LPCWSTR cmd_ptr = szCommandLine;
......
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