FW: Free strings in FFI?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

FW: Free strings in FFI?

Ron Teitelbaum
Sorry about that, I hit send by mistake!

All,

Does anyone know if strings (ExternalData) need to be explicitly freed?
 
I wrote this method

containerName
        | exData result |
        exData := self pwszContainerName.
        result := exData fromCMSWideString.
        exData free.
        ^result

Is it necessary to free the string?

Ron Teitelbaum