Commit cee0a726 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

oleaut32: Don't fall back on typelib name for docstring.

parent c9dbef3d
......@@ -4838,11 +4838,6 @@ static HRESULT WINAPI ITypeLib2_fnGetDocumentation(
if(!(*pBstrDocString = SysAllocString(TLB_get_bstr(This->DocString))))
goto memerr2;
}
else if (This->Name)
{
if(!(*pBstrDocString = SysAllocString(TLB_get_bstr(This->Name))))
goto memerr2;
}
else
*pBstrDocString = NULL;
}
......
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