<p>Jenkins2 <strong>merged</strong> this change.</p><p><a href="https://gerrit.asterisk.org/7668">View Change</a></p><div style="white-space:pre-wrap">Approvals:
  Corey Farrell: Looks good to me, but someone else must approve
  Richard Mudgett: Looks good to me, but someone else must approve
  Joshua Colp: Looks good to me, approved
  Jenkins2: Approved for Submit

</div><pre style="font-family: monospace,monospace; white-space: pre-wrap;">res_rtp_asterisk:  Avoid close the rtp/rtcp fd twice.<br><br>When RTCP-MUX enabled. rtp->s is the same as rtcp->s, check this before<br>close the file descriptor. Close the FD twice will hangs the asterisk<br>under heavy load.<br><br>ASTERISK-27299 #close<br>Reported-by: Aaron An<br>Tested-by: AaronAn<br><br>Change-Id: I870a072d73fd207463ac116ef97100addbc0820a<br>---<br>M res/res_rtp_asterisk.c<br>1 file changed, 4 insertions(+), 1 deletion(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c<br>index 51e509c..913fbad 100644<br>--- a/res/res_rtp_asterisk.c<br>+++ b/res/res_rtp_asterisk.c<br>@@ -3481,6 +3481,7 @@<br> <br> static void rtp_deallocate_transport(struct ast_rtp_instance *instance, struct ast_rtp *rtp)<br> {<br>+      int saved_rtp_s = rtp->s;<br> #ifdef HAVE_PJPROJECT<br>  struct timeval wait = ast_tvadd(ast_tvnow(), ast_samp2tv(TURN_STATE_WAIT_TIME, 1000));<br>        struct timespec ts = { .tv_sec = wait.tv_sec, .tv_nsec = wait.tv_usec * 1000, };<br>@@ -3498,7 +3499,9 @@<br> <br>    /* Destroy RTCP if it was being used */<br>       if (rtp->rtcp && rtp->rtcp->s > -1) {<br>-            close(rtp->rtcp->s);<br>+           if (saved_rtp_s != rtp->rtcp->s) {<br>+                     close(rtp->rtcp->s);<br>+           }<br>             rtp->rtcp->s = -1;<br>      }<br> <br></pre><p>To view, visit <a href="https://gerrit.asterisk.org/7668">change 7668</a>. To unsubscribe, 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/7668"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: 15 </div>
<div style="display:none"> Gerrit-MessageType: merged </div>
<div style="display:none"> Gerrit-Change-Id: I870a072d73fd207463ac116ef97100addbc0820a </div>
<div style="display:none"> Gerrit-Change-Number: 7668 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Sean Bright <sean.bright@gmail.com> </div>
<div style="display:none"> Gerrit-Reviewer: Aaron An <anjb@ti-net.com.cn> </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: Joshua Colp <jcolp@digium.com> </div>
<div style="display:none"> Gerrit-Reviewer: Richard Mudgett <rmudgett@digium.com> </div>