<p> Attention is currently required from: Joshua Colp, Jaco Kroon. </p>
<p>Patch set 3:<span style="border-radius: 3px; display: inline-block; margin: 0 2px; padding: 4px;background-color: #ffd4d4; color: #000000;">Code-Review -1</span></p><p><a href="https://gerrit.asterisk.org/c/asterisk/+/16640">View Change</a></p><p>4 comments:</p><ul style="list-style: none; padding: 0;"><li style="margin: 0; padding: 0;"><p><a href="null">Patchset:</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/asterisk/+/16640?tab=comments">Patch Set #3:</a> </p><p style="white-space: pre-wrap; word-wrap: break-word;">I'm not sure this patch is even needed or should be allowed in at all based on deprecation policy? After looking at the current code it seems the 'term_color' function is deprecated and probably has been for a while. It's stated in the doxygen to use:</p><p style="white-space: pre-wrap; word-wrap: break-word;">"...ast_term_color_code() or ast_term_color()"</p><p style="white-space: pre-wrap; word-wrap: break-word;">instead. So perhaps the solution is to call update your code to call one of those functions?</p></li></ul></li><li style="margin: 0; padding: 0;"><p><a href="null">File main/term.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/asterisk/+/16640/comment/a22c004f_fa76e9ce">Patch Set #3, Line 273:</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;"><br>        if (p < maxout)<br>            return outbuf;<br></pre></blockquote></p><p style="white-space: pre-wrap; word-wrap: break-word;">Per coding guidelines if statements need braces</p></li><li style="margin: 0; padding: 0 0 0 16px;"><p style="margin-bottom: 4px;"><a href="https://gerrit.asterisk.org/c/asterisk/+/16640/comment/dc5f07e0_1d82db0b">Patch Set #3, Line 277:</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 (ast_opt_force_black_background) {<br>         /* bgcolor will be handled above already */<br>           p = snprintf(outbuf, maxout, "%c[%d;%d;%dm", ESC, attr, fgcolor, bgcolor + 10);<br>     } else {<br>              p = snprintf(outbuf, maxout, "%c[%d;%dm", ESC, attr, fgcolor);<br>      }<br></pre></blockquote></p><p style="white-space: pre-wrap; word-wrap: break-word;">Why rewrite beginning part of outbuf with the same data? You should have all the values needed (p, maxout, tail_len) to just overwrite only the last part of outbuf.</p></li><li style="margin: 0; padding: 0 0 0 16px;"><p style="margin-bottom: 4px;"><a href="https://gerrit.asterisk.org/c/asterisk/+/16640/comment/ff46b8d6_bc0aa342">Patch Set #3, Line 284:</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 (!tail_out) {<br>              tail_out = term_end();<br>                tail_len = strlen(tail_out);<br>  }<br></pre></blockquote></p><p style="white-space: pre-wrap; word-wrap: break-word;">It's possible for the setting of these variables in a multi-threaded environment to result in undefined behavior. Adding a lock here just for this seems not great, so I'd recommend initializing them outside this function somehow.</p><p style="white-space: pre-wrap; word-wrap: break-word;">Based on other comments you probably just need to "cache" tail_len though. I'd let the compiler optimize the term_end() call.</p></li></ul></li></ul><p>To view, visit <a href="https://gerrit.asterisk.org/c/asterisk/+/16640">change 16640</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/c/asterisk/+/16640"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: I80ef7a4bfd2947e090ef830143391d11baebdb0d </div>
<div style="display:none"> Gerrit-Change-Number: 16640 </div>
<div style="display:none"> Gerrit-PatchSet: 3 </div>
<div style="display:none"> Gerrit-Owner: Jaco Kroon <jaco@uls.co.za> </div>
<div style="display:none"> Gerrit-Reviewer: Friendly Automation </div>
<div style="display:none"> Gerrit-Reviewer: Kevin Harwell <kharwell@digium.com> </div>
<div style="display:none"> Gerrit-CC: Joshua Colp <jcolp@sangoma.com> </div>
<div style="display:none"> Gerrit-Attention: Joshua Colp <jcolp@sangoma.com> </div>
<div style="display:none"> Gerrit-Attention: Jaco Kroon <jaco@uls.co.za> </div>
<div style="display:none"> Gerrit-Comment-Date: Wed, 17 Nov 2021 18:34:14 +0000 </div>
<div style="display:none"> Gerrit-HasComments: Yes </div>
<div style="display:none"> Gerrit-Has-Labels: Yes </div>
<div style="display:none"> Gerrit-MessageType: comment </div>