oleaut32: Output a FIXME message only once.

This commit is contained in:
Mike McCormack 2006-01-06 12:16:58 +01:00 committed by Alexandre Julliard
parent b2d604a9da
commit 98ed3fa553
1 changed files with 6 additions and 1 deletions

View File

@ -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)