On Sun, Apr 14, 2013 at 6:59 PM, Bodo Kaiser <[email protected]> wrote: > Hello, > > i want to know if a buffer which I have fed with own data is able to free > this or if there is an api for manual freeing. > > See: > https://gist.github.com/bodokaiser/5383405 > > Bodo
Check src/node_buffer.h, there's a Buffer::New() method that takes a free_callback argument. By the way, your snippet has a bug, it's missing a return statement on the scope.Close(...) line. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
