Commit af6413aa authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

windowscodecs/tests: Handle failure to create TIFF decoder.

parent dc3bf7d8
......@@ -170,6 +170,7 @@ static IWICBitmapDecoder *create_decoder(const void *image_data, UINT image_size
hr = IWICImagingFactory_CreateDecoderFromStream(factory, stream, NULL, 0, &decoder);
ok(hr == S_OK, "CreateDecoderFromStream error %#x\n", hr);
if (FAILED(hr)) return NULL;
hr = IWICBitmapDecoder_GetContainerFormat(decoder, &guid);
ok(hr == S_OK, "GetContainerFormat error %#x\n", hr);
......@@ -190,6 +191,7 @@ static void test_tiff_palette(void)
decoder = create_decoder(&tiff_1bpp_data, sizeof(tiff_1bpp_data));
ok(decoder != 0, "Failed to load TIFF image data\n");
if (!decoder) return;
hr = IWICBitmapDecoder_GetFrame(decoder, 0, &frame);
ok(hr == S_OK, "GetFrame error %#x\n", hr);
......@@ -231,6 +233,7 @@ static void test_QueryCapability(void)
hr = IWICImagingFactory_CreateDecoder(factory, &GUID_ContainerFormatTiff, NULL, &decoder);
ok(hr == S_OK, "CreateDecoder error %#x\n", hr);
if (FAILED(hr)) return;
frame_count = 0xdeadbeef;
hr = IWICBitmapDecoder_GetFrameCount(decoder, &frame_count);
......@@ -322,6 +325,7 @@ static void test_tiff_8bpp_alpha(void)
decoder = create_decoder(&tiff_8bpp_alpha, sizeof(tiff_8bpp_alpha));
ok(decoder != 0, "Failed to load TIFF image data\n");
if (!decoder) return;
hr = IWICBitmapDecoder_GetFrameCount(decoder, &frame_count);
ok(hr == S_OK, "GetFrameCount error %#x\n", hr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment