mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[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:
parent
4a66cbb224
commit
7b9269fc8e
2 changed files with 8 additions and 2 deletions
|
@ -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;
|
||||
|
|
7
sdk/tools/winesync/reg.cfg
Normal file
7
sdk/tools/winesync/reg.cfg
Normal 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
|
Loading…
Reference in a new issue