shlwapi/tests: Add missing return value checks to istream tests (Coverity).

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alex Henrie 2018-01-08 01:19:29 -07:00 committed by Alexandre Julliard
parent 7b2ead8da0
commit 031f2ab64f
1 changed files with 4 additions and 2 deletions

View File

@ -663,8 +663,10 @@ static void test_SHCreateStreamOnFileEx_CopyTo(void)
static const WCHAR prefix[] = { 'T', 'S', 'T', 0 };
GetTempPathW(MAX_PATH, tmpPath);
GetTempFileNameW(tmpPath, prefix, 0, srcFileName);
GetTempFileNameW(tmpPath, prefix, 0, dstFileName);
ret = GetTempFileNameW(tmpPath, prefix, 0, srcFileName);
ok(ret != 0, "GetTempFileName failed, got error %d\n", GetLastError());
ret = GetTempFileNameW(tmpPath, prefix, 0, dstFileName);
ok(ret != 0, "GetTempFileName failed, got error %d\n", GetLastError());
ret = SHCreateStreamOnFileEx(srcFileName, STGM_CREATE | STGM_READWRITE | STGM_DELETEONRELEASE, FILE_ATTRIBUTE_TEMPORARY, FALSE, NULL, &src);
ok(SUCCEEDED(ret), "SHCreateStreamOnFileEx failed with ret=0x%08x\n", ret);