lz32: LZOpenFileA sets last error sometimes.

This commit is contained in:
Saulius Krasuckas 2006-06-19 23:21:28 +03:00 committed by Alexandre Julliard
parent bd2df081bd
commit 6d024b28b9
1 changed files with 3 additions and 1 deletions

View File

@ -60,10 +60,13 @@ static void test_LZOpenFileA(void)
char expected[MAX_PATH];
char filled_0xA5[OFS_MAXPATHNAME];
SetLastError(0xfaceabee);
/* Check for nonexistent file. */
file = LZOpenFileA("badfilename_", &test, OF_READ);
ok(file == LZERROR_BADINHANDLE,
"LZOpenFileA succeeded on nonexistent file\n");
ok(GetLastError() == ERROR_FILE_NOT_FOUND,
"GetLastError() returns %ld\n", GetLastError());
LZClose(file);
/* Create an empty file. */
@ -102,7 +105,6 @@ static void test_LZOpenFileA(void)
expected[retval-1] = '_';
memset(&filled_0xA5, 0xA5, OFS_MAXPATHNAME);
memset(&test, 0xA5, sizeof(test));
SetLastError(0xfaceabee);
/* Try to open compressed file. */
file = LZOpenFileA(filename, &test, OF_EXIST);