diff --git a/dlls/oleaut32/olepicture.c b/dlls/oleaut32/olepicture.c index 927c85c8d63..83ef0aa85ed 100644 --- a/dlls/oleaut32/olepicture.c +++ b/dlls/oleaut32/olepicture.c @@ -308,12 +308,8 @@ static OLEPictureImpl* OLEPictureImpl_Construct(LPPICTDESC pictDesc, BOOL fOwn) newObject->bIsDirty = FALSE; if (pictDesc) { - if(pictDesc->cbSizeofstruct != sizeof(PICTDESC)) { - FIXME("struct size = %d\n", pictDesc->cbSizeofstruct); - } memcpy(&newObject->desc, pictDesc, sizeof(PICTDESC)); - switch(pictDesc->picType) { case PICTYPE_BITMAP: OLEPictureImpl_SetBitmap(newObject);