mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
windowscodecs: TiffDecoder_GetThumbnail should return NULL interface.
This commit is contained in:
parent
67e7eda96c
commit
f07829da57
@ -643,6 +643,10 @@ static HRESULT WINAPI TiffDecoder_GetThumbnail(IWICBitmapDecoder *iface,
|
||||
IWICBitmapSource **ppIThumbnail)
|
||||
{
|
||||
TRACE("(%p,%p)\n", iface, ppIThumbnail);
|
||||
|
||||
if (!ppIThumbnail) return E_INVALIDARG;
|
||||
|
||||
*ppIThumbnail = NULL;
|
||||
return WINCODEC_ERR_CODECNOTHUMBNAIL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user