Commit aea6418f authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

msi: Initialize variable in MSI_ApplyPatchW.

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