memory free is sometimes used, but often not needed because of memory pools.<br><br>Sessions and channels have their own memory pool, anything creating memory for one of them will not need freeing as when the session ends the entire pool is destroyed. Similarly many modules have a pool which lasts for the lifetime of the module.<br>
<br>There are other functions which will need freeing though... I suggest that you use switch_safe_free() to be consistent with the rest of freeswitch. It&#39;s just a wrapper on free which doesn&#39;t call it for a null pointer (avoiding a segfault on some systems).<br>
<br>Some examples:<br>- switch_snprintf &amp; switch_mprintf needs a free (is given no pool or object with a pool)<br>- switch_core_session_sprintf does not need a free (it&#39;s given a session, memory is allocated from its pool)<br>
- switch_channel_expand_variables sometimes needs free, sometimes doesn&#39;t (you give it a buffer, if it&#39;s large enough its used and returned otherwise it creates a new one, so you should check the return value against the buffer to avoid either freeing a const char or a buffer twice).<br>
<br>-Steve<br><br><div class="gmail_quote">On 29 June 2010 06:19, Paul Li <span dir="ltr">&lt;<a href="mailto:plite2012@gmail.com">plite2012@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
A lot of FreeSwitch core APIs, such as switch_event_dup(switch_event_t<br>
**event, switch_event_t *todup), returns a pointer to an allocated<br>
memory chunk, should the caller always releases that memory chunk by<br>
calling a proper API, such as switch_event_destroy(switch_event_t<br>
**event)?<br>
<br>
I could not find any documentation to detail the general rule<br>
regarding memory allocation/free when using the core APIs.<br>
<br>
Thank you for your attention!<br>
<div><div></div><div class="h5"><br>
_______________________________________________<br>
FreeSWITCH-dev mailing list<br>
<a href="mailto:FreeSWITCH-dev@lists.freeswitch.org">FreeSWITCH-dev@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br>