mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[WINESYNC] msi: Unlock msi_custom_action_c on the error paths.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45483 Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id c2add8a030b63d79f94d516d2dbee9fb09b9c09c by Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
dc4f732a06
commit
d79a5e413e
1 changed files with 2 additions and 0 deletions
|
@ -693,11 +693,13 @@ static DWORD WINAPI custom_client_thread(void *arg)
|
||||||
size != sizeof(info->guid))
|
size != sizeof(info->guid))
|
||||||
{
|
{
|
||||||
ERR("Failed to write to custom action client pipe: %u\n", GetLastError());
|
ERR("Failed to write to custom action client pipe: %u\n", GetLastError());
|
||||||
|
LeaveCriticalSection(&msi_custom_action_cs);
|
||||||
return GetLastError();
|
return GetLastError();
|
||||||
}
|
}
|
||||||
if (!ReadFile(pipe, &thread64, sizeof(thread64), &size, NULL) || size != sizeof(thread64))
|
if (!ReadFile(pipe, &thread64, sizeof(thread64), &size, NULL) || size != sizeof(thread64))
|
||||||
{
|
{
|
||||||
ERR("Failed to read from custom action client pipe: %u\n", GetLastError());
|
ERR("Failed to read from custom action client pipe: %u\n", GetLastError());
|
||||||
|
LeaveCriticalSection(&msi_custom_action_cs);
|
||||||
return GetLastError();
|
return GetLastError();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue