oleaut32: Fix a leak of a typelib object in OLEFontImpl_GetTypeInfo.
diff --git a/dlls/oleaut32/olefont.c b/dlls/oleaut32/olefont.c index 3376c0c..fe787a7 100644 --- a/dlls/oleaut32/olefont.c +++ b/dlls/oleaut32/olefont.c
@@ -1215,6 +1215,7 @@ return hres; } hres = ITypeLib_GetTypeInfoOfGuid(tl, &IID_IFontDisp, ppTInfo); + ITypeLib_Release(tl); if (FAILED(hres)) { FIXME("Did not IDispatch typeinfo from typelib, hres %x\n",hres); }