Skip to content
Snippets Groups Projects
Commit a9d0f897 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard
Browse files

windowscodecs: Avoid casting IWICFormatConverter to IWICBitmapSource.

parent 33a1f892
No related branches found
No related tags found
No related merge requests found
......@@ -2181,8 +2181,9 @@ HRESULT WINAPI WICConvertBitmapSource(REFWICPixelFormatGUID dstFormat, IWICBitma
if (converter)
{
*ppIDst = (IWICBitmapSource*)converter;
return S_OK;
res = IWICFormatConverter_QueryInterface(converter, &IID_IWICBitmapSource, (void **)ppIDst);
IWICFormatConverter_Release(converter);
return res;
}
else
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment