[Haskell-cafe] peekCString & free memory
El Barto
elbarteau at gmail.com
Sun Nov 29 12:00:02 EST 2009
Hello,
I get a segfault when I do
str <- peekCString ptr
free ptr
return (Just str)
But not when I don't free the C pointer.
I also get the same behaviour with ByteString.packCString...
Could you please tell me if the memory is correctly freed by GHC when I
don't do it myself?
And how can I specify a custom free function (i.e. xmlFree function in
libxml2)?
Maybe I should use a data type with two fields : the String/ByteString and
the ForeignPtr to the CString?
Regards
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.haskell.org/pipermail/haskell-cafe/attachments/20091129/4c6902a5/attachment.html
More information about the Haskell-Cafe
mailing list