<p>Patch set 5:<span style="border-radius: 3px; display: inline-block; margin: 0 2px; padding: 4px;background-color: #ffd4d4;">Code-Review -1</span></p><p><a href="https://gerrit.asterisk.org/9883">View Change</a></p><p>2 comments:</p><ul style="list-style: none; padding: 0;"><li style="margin: 0; padding: 0;"><p><a href="https://gerrit.asterisk.org/#/c/9883/5/pbx/pbx_config.c">File pbx/pbx_config.c:</a></p><ul style="list-style: none; padding: 0;"><li style="margin: 0; padding: 0 0 0 16px;"><p style="margin-bottom: 4px;"><a href="https://gerrit.asterisk.org/#/c/9883/5/pbx/pbx_config.c@2049">Patch Set #5, Line 2049:</a> <code style="font-family:monospace,monospace">              local_table = ast_hashtab_create(17, ast_hashtab_compare_contexts, ast_hashtab_resize_java, ast_hashtab_newsize_java, ast_hashtab_hash_contexts, 0);</code></p><p style="white-space: pre-wrap; word-wrap: break-word;">It is best if we decline the load if ast_hashtab_create() returns NULL.</p></li><li style="margin: 0; padding: 0 0 0 16px;"><p style="margin-bottom: 4px;"><a href="https://gerrit.asterisk.org/#/c/9883/5/pbx/pbx_config.c@2051">Patch Set #5, Line 2051:</a> </p><p><blockquote style="border-left: 1px solid #aaa; margin: 10px 0; padding: 0 10px;"><pre style="font-family: monospace,monospace; white-space: pre-wrap;">        if (!pbx_load_config(config)) {<br>               ast_mutex_unlock(&reload_lock);<br>           return AST_MODULE_LOAD_DECLINE;<br></pre></blockquote></p><p style="white-space: pre-wrap; word-wrap: break-word;">Need to destroy local_table and set to NULL before returning.  Otherwise we will leak local_table if we then choose to exit or restart asterisk instead of attempting to load pbx_config again after fixing what caused us to decline loading pbx_config.</p><p style="white-space: pre-wrap; word-wrap: break-word;">ast_hashtab_destroy(local_table, NULL);<br>local_table = NULL;</p><p style="white-space: pre-wrap; word-wrap: break-word;">Looking at the code in pbx_load_config() and pbx_load_users(), it seems to be OK if ast_hashtab_create() fails and returns NULL.  Although it is better to check if ast_hashtab_create() failed to create local_table and decline the load.</p><p style="white-space: pre-wrap; word-wrap: break-word;">ast_hashtab_destroy() is NULL tolerant of the passed in table.</p></li></ul></li></ul><p>To view, visit <a href="https://gerrit.asterisk.org/9883">change 9883</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.asterisk.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.asterisk.org/9883"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: 13 </div>
<div style="display:none"> Gerrit-MessageType: comment </div>
<div style="display:none"> Gerrit-Change-Id: Ib00665106043b1be5148ffa7a477396038915854 </div>
<div style="display:none"> Gerrit-Change-Number: 9883 </div>
<div style="display:none"> Gerrit-PatchSet: 5 </div>
<div style="display:none"> Gerrit-Owner: Chris Savinovich <csavinovich@digium.com> </div>
<div style="display:none"> Gerrit-Reviewer: Corey Farrell <git@cfware.com> </div>
<div style="display:none"> Gerrit-Reviewer: Jenkins2 </div>
<div style="display:none"> Gerrit-Reviewer: Richard Mudgett <rmudgett@digium.com> </div>
<div style="display:none"> Gerrit-Comment-Date: Fri, 17 Aug 2018 23:33:15 +0000 </div>
<div style="display:none"> Gerrit-HasComments: Yes </div>
<div style="display:none"> Gerrit-HasLabels: Yes </div>