1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

msvcp140/tests: Fix _Syserror_map(0) test failure in newest msvcp140.

This commit is contained in:
Piotr Caban 2024-01-20 20:46:31 +01:00 committed by Alexandre Julliard
parent 1d917529f1
commit c0598baa87

View file

@ -1396,6 +1396,8 @@ static void test__Syserror_map(void)
r1 = p__Syserror_map(0);
ok(r1 != NULL, "_Syserror_map(0) returned NULL\n");
r1 = p__Syserror_map(1233);
ok(r1 != NULL, "_Syserror_map(1233) returned NULL\n");
r2 = p__Syserror_map(1234);
ok(r2 != NULL, "_Syserror_map(1234) returned NULL\n");
ok(r1 == r2, "r1 = %p(%s), r2 = %p(%s)\n", r1, r1, r2, r2);