Fix msvcrt._vsnwprintf format reading bug like NTDLL_vsnwprintf.

This commit is contained in:
John K. Hohm 2002-05-20 18:02:47 +00:00 committed by Alexandre Julliard
parent 70b93e30f3
commit 45b94449e6
1 changed files with 0 additions and 3 deletions

View File

@ -177,10 +177,7 @@ int _vsnwprintf(WCHAR *str, unsigned int len,
} }
if (*iter == (WCHAR)L'h' || if (*iter == (WCHAR)L'h' ||
*iter == (WCHAR)L'l') *iter == (WCHAR)L'l')
{
*fmta++ = *iter++; *fmta++ = *iter++;
*fmta++ = *iter++;
}
switch (*iter) switch (*iter)
{ {