Commit dd1bef34 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Reset the MsiEnumPatchesExW index on failure.

parent 7aad77ae
...@@ -2041,7 +2041,7 @@ UINT WINAPI MsiEnumPatchesExW(LPCWSTR szProductCode, LPCWSTR szUserSid, ...@@ -2041,7 +2041,7 @@ UINT WINAPI MsiEnumPatchesExW(LPCWSTR szProductCode, LPCWSTR szUserSid,
DWORD idx = 0; DWORD idx = 0;
UINT r; UINT r;
static int last_index = 0; static DWORD last_index;
TRACE("(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p)\n", TRACE("(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p)\n",
debugstr_w(szProductCode), debugstr_w(szUserSid), dwContext, dwFilter, debugstr_w(szProductCode), debugstr_w(szUserSid), dwContext, dwFilter,
...@@ -2077,6 +2077,8 @@ UINT WINAPI MsiEnumPatchesExW(LPCWSTR szProductCode, LPCWSTR szUserSid, ...@@ -2077,6 +2077,8 @@ UINT WINAPI MsiEnumPatchesExW(LPCWSTR szProductCode, LPCWSTR szUserSid,
if (r == ERROR_SUCCESS) if (r == ERROR_SUCCESS)
last_index = dwIndex; last_index = dwIndex;
else
last_index = 0;
return r; return r;
} }
......
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