windowscodecs: Do not assume that vtable is the first element of the object.

This commit is contained in:
Dmitry Timoshkov 2012-08-18 02:09:09 +09:00 committed by Alexandre Julliard
parent 49550c647d
commit 40bda4a030

View File

@ -59,7 +59,7 @@ static HRESULT WINAPI PaletteImpl_QueryInterface(IWICPalette *iface, REFIID iid,
if (IsEqualIID(&IID_IUnknown, iid) || IsEqualIID(&IID_IWICPalette, iid))
{
*ppv = This;
*ppv = &This->IWICPalette_iface;
}
else
{