kernel32/tests: Add SetLastError() before a test (Valgrind).

This commit is contained in:
André Hentschel 2011-03-01 17:08:06 +01:00 committed by Alexandre Julliard
parent f082eac97c
commit 4c6e57654f

View file

@ -138,6 +138,7 @@ static void test_FiberHandling(void)
return;
}
SetLastError(0xdeadbeef);
fibers[1] = pCreateFiberEx(0,0,0,FiberMainProc,&testparam);
ok(fibers[1] != 0, "CreateFiberEx failed with error %d\n", GetLastError());