I have some code that looks like this:
_TypePtr spType = NULL;
. . . // host the CLR and populate that type
{
BSTR fullName;
spType->get_FullName(&fullName);
wprintf(L"Got type %s\n", fullName);
}
Do I need to free that bstr? How do I free it SysFreeString()? If not why?