Commit 98ed3fa5 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

oleaut32: Output a FIXME message only once.

parent b2d604a9
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment