Commit b42b9ddb authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Mention the applications that depend on the behavior checked by the

GetLocaleInfoA partial buffer test.
parent 26ffca49
......@@ -51,6 +51,9 @@ char buffer[BUFFER_SIZE], Expected[BUFFER_SIZE];
lcid = MAKELCID(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), SORT_DEFAULT );
ok (lcid == 0x409, "wrong LCID calculated");
/* HTMLKit and "Font xplorer lite" expect GetLocaleInfoA to
* partially fill the buffer even if it is too short. See bug 637.
*/
strcpy(Expected, "xxxxx");
memset( buffer, 'x', sizeof(buffer) );
ret = GetLocaleInfoA(lcid, LOCALE_SDAYNAME1, buffer, 0);
......
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