<html>
<body>
<div style="font-family: Verdana, Arial, Helvetica, Sans-Serif;">
<table bgcolor="#f9f3c9" width="100%" cellpadding="8" style="border: 1px #c9c399 solid;">
<tr>
<td>
This is an automatically generated e-mail. To reply, visit:
<a href="https://reviewboard.asterisk.org/r/1922/">https://reviewboard.asterisk.org/r/1922/</a>
</td>
</tr>
</table>
<br />
<p>Ship it!</p>
<pre style="white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">There are some leaks you're fixing where under current conditions, they cannot occur. However, the fixes you're putting in place are forward-looking and of course shut the static analyzer up. So go for it!</pre>
<br />
<p>- Mark</p>
<br />
<p>On May 18th, 2012, 8:41 a.m., Matt Jordan wrote:</p>
<table bgcolor="#fefadf" width="100%" cellspacing="0" cellpadding="8" style="background-image: url('https://reviewboard.asterisk.org/media/rb/images/review_request_box_top_bg.png'); background-position: left top; background-repeat: repeat-x; border: 1px black solid;">
<tr>
<td>
<div>Review request for Asterisk Developers, otherwiseguy, rmudgett, and opticron.</div>
<div>By Matt Jordan.</div>
<p style="color: grey;"><i>Updated May 18, 2012, 8:41 a.m.</i></p>
<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Description </h1>
<table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
<tr>
<td>
<pre style="margin: 0; padding: 0; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">This fixes a number of memory leaks in core modules (and a few modules that are extended support, but were easy to fix) that were found by a static analysis tool. A brief summary of the changes:
* app_minivm: free ast_str objects on off nominal paths
* app_page: free the ast_dial object if the requested channel technology cannot be appended to the dialing structure
* app_queue: if a penalty rule failed to match any existing rule list names, the created rule would not be inserted and its memory would be leaked
* app_read: dispose of the created silence detector in the presence of off nominal circumstances
* app_voicemail: dispose of an allocated unique ID field for MWI event un-subscribe requests in off nominal paths; dispose of configuration objects when using the secret.conf option
* chan_dahdi: dispose of the allocated frame produced by ast_dsp_process
* chan_iax2: properly unref peer in CLI command "iax2 unregister"
* chan_sip: dispose of the allocated frame produced by sip_rtp_read's call of ast_dsp_process; free memory in parse unit tests
* func_dialgroup: properly deref ao2 object grhead in nominal path of dialgroup_read
* func_odbc: free resultset in off nominal paths of odbc_read
* cli: free match_list in off nominal paths of CLI match completion
* config: free comment_buffer/list_buffer when configuration file load is unchanged; free the same buffers any time they were created and config files were processed
* data: free XML nodes in various places
* enum: free context buffer in off nominal paths
* features: free ast_call_feature in off nominal paths of applicationmap config processing
* netsock2: users of ast_sockaddr_resolve pass in an ast_sockaddr struct that is allocated by the method. Failures in ast_sockaddr_resolve could result in the users of the method not knowing whether or not the buffer was allocated. The method will now not allocate the ast_sockaddr struct if it will return failure.
* pbx: cleanup hash table traversals in off nominal paths; free ignore pattern buffer if it already exists for the specified context
* xmldoc: cleanup various nodes when we no longer need them
* main/editline: various cleanup of pointers not being freed before being assigned to other memory, cleanup along off nominal paths
* menuselect/mxml: cleanup of value buffer for an attribute when that attribute did not specify a value
* res_calendar*: responses are allocated via the various *_request method returns and should not be allocated in the various write_event methods; ensure attendee buffer is freed if no data exists in the parsed node; ensure that calendar objects are de-ref'd appropriately
* res_jabber: free buffer in off nominal path
* res_musiconhold: close the DIR* object in off nominal paths
* res_rtp_asterisk: if we run out of ports, close the rtp socket object and free the rtp object
* res_srtp: if we fail to create the session in libsrtp, destroy the temporary ast_srtp object</pre>
</td>
</tr>
</table>
<div style="margin-top: 1.5em;">
<b style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Bugs: </b>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-19665">ASTERISK-19665</a>
</div>
<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Diffs</b> </h1>
<ul style="margin-left: 3em; padding-left: 0;">
<li>/branches/1.8/apps/app_minivm.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/apps/app_page.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/apps/app_queue.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/apps/app_record.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/apps/app_voicemail.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/channels/chan_dahdi.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/channels/chan_iax2.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/channels/chan_sip.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/channels/sip/config_parser.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/funcs/func_dialgroup.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/funcs/func_odbc.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/cli.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/config.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/data.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/editline/readline.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/editline/term.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/editline/tokenizer.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/enum.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/features.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/netsock2.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/pbx.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/main/xmldoc.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/res/res_calendar.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/res/res_calendar_caldav.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/res/res_calendar_exchange.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/res/res_calendar_icalendar.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/res/res_jabber.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/res/res_musiconhold.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/res/res_rtp_asterisk.c <span style="color: grey">(366879)</span></li>
<li>/branches/1.8/res/res_srtp.c <span style="color: grey">(366879)</span></li>
</ul>
<p><a href="https://reviewboard.asterisk.org/r/1922/diff/" style="margin-left: 3em;">View Diff</a></p>
</td>
</tr>
</table>
</div>
</body>
</html>