mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
gdiplus: Fix IWICBitmapFrameDecode reference leak in decode_frame_wic.
This commit is contained in:
parent
146c263127
commit
bf12d17b48
1 changed files with 1 additions and 1 deletions
|
@ -3930,8 +3930,8 @@ static GpStatus decode_frame_wic(IWICBitmapDecoder *decoder, BOOL force_conversi
|
|||
}
|
||||
|
||||
palette = get_palette(frame, palette_type);
|
||||
IWICBitmapFrameDecode_Release(frame);
|
||||
}
|
||||
IWICBitmapFrameDecode_Release(frame);
|
||||
}
|
||||
|
||||
if (FAILED(hr) && status == Ok) status = hresult_to_status(hr);
|
||||
|
|
Loading…
Reference in a new issue