Let's say I have allocated a string using SysAllocString. A separate class which is using the string calls SysAddRefString. Before it releases the string with SysReleaseString, the original owner class is calling SysFreeString. Would this create a problem?
Ie. do these functions always have to be called in this specific order:
SysAllocString
SysAddRefString
SysReleaseString
SysFreeString
Or is this ok? I have tried and it seems to work, but I don't know if there can be any potential problems:
SysAllocString
SysAddRefString
SysFreeString (memory is not released)
SysReleaseString (memory is actually released here)