[WINESYNC] reg: FormatMessage() now reports ERROR_NO_WORK_DONE error for empty string.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id f81d15beb690c5e08c5995b90aec8015218bee55 by Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
winesync 2022-01-16 14:51:29 +01:00 committed by Thomas Csovcsity
parent 4a66cbb224
commit 7b9269fc8e
2 changed files with 8 additions and 2 deletions

View file

@ -132,10 +132,9 @@ static void output_formatstring(const WCHAR *fmt, __ms_va_list va_args)
WCHAR *str;
DWORD len;
SetLastError(NO_ERROR);
len = FormatMessageW(FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ALLOCATE_BUFFER,
fmt, 0, 0, (WCHAR *)&str, 0, &va_args);
if (len == 0 && GetLastError() != NO_ERROR)
if (len == 0 && GetLastError() != ERROR_NO_WORK_DONE)
{
WINE_FIXME("Could not format string: le=%u, fmt=%s\n", GetLastError(), wine_dbgstr_w(fmt));
return;

View file

@ -0,0 +1,7 @@
directories:
programs/reg: base/applications/cmdutils/reg
programs/reg/tests: modules/rostests/winetests/reg
files:
programs/reg/resource.h: base/applications/cmdutils/reg/resource.h
tags:
wine: f81d15beb690c5e08c5995b90aec8015218bee55