oleaut32: Output a FIXME message only once.
This commit is contained in:
parent
b2d604a9da
commit
98ed3fa553
|
@ -4287,7 +4287,12 @@ static ULONG WINAPI ITypeInfo_fnRelease(ITypeInfo2 *iface)
|
|||
it means that function is called by ITypeLib2_Release */
|
||||
ITypeLib2_Release((ITypeLib2*)This->pTypeLib);
|
||||
} else {
|
||||
FIXME("destroy child objects\n");
|
||||
static int once = 0;
|
||||
if (!once)
|
||||
{
|
||||
once = 1;
|
||||
FIXME("destroy child objects\n");
|
||||
}
|
||||
|
||||
TRACE("destroying ITypeInfo(%p)\n",This);
|
||||
if (This->Name)
|
||||
|
|
Loading…
Reference in New Issue