mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[WS2_32_APITEST]
- Gracefully handle uninitialized data in WSAStartup test svn path=/trunk/; revision=56828
This commit is contained in:
parent
5f2da6aad9
commit
e985ec1cd4
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ CheckStringBuffer(
|
||||||
EqualLength = RtlCompareMemory(Buffer, Expected, Length);
|
EqualLength = RtlCompareMemory(Buffer, Expected, Length);
|
||||||
if (EqualLength != Length)
|
if (EqualLength != Length)
|
||||||
{
|
{
|
||||||
ok(0, "String is '%s', expected '%s'\n", Buffer, Expected);
|
ok(0, "String is '%.*s', expected '%s'\n", (int)MaximumLength, Buffer, Expected);
|
||||||
Result = FALSE;
|
Result = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue