<h1>Project "FreeSWITCH Source" received a push.</h1>

<h2>branch: master updated</h2>
<pre>
       via: 88d410d31485d13911f0958af5a73f1f6f49a454 (commit)
      from: 02234ae87db5fcca0168a140b5800618de65d3d9 (commit)


</pre>= COMMIT LOG ===========================================================
<div class="highlight"><pre>committer: Anthony Minessale
comments: 
fix uuid_jitterbuffer edge case debugging a non-existant jb causing a seg

<span style="color: #000080; font-weight: bold">diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c</span>
<span style="color: #000080; font-weight: bold">index 2a2ec63..07c285f 100644</span>
<span style="color: #A00000">--- a/src/mod/endpoints/mod_sofia/mod_sofia.c</span>
<span style="color: #00A000">+++ b/src/mod/endpoints/mod_sofia/mod_sofia.c</span>
<span style="color: #800080; font-weight: bold">@@ -1366,7 +1366,7 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi</span>
                                                 if (s &amp;&amp; !strcmp(s, &quot;off&quot;)) {
                                                         s = NULL;
                                                 }
<span style="color: #A00000">-                                                switch_rtp_debug_jitter_buffer(tech_pvt-&gt;rtp_session, s);</span>
<span style="color: #00A000">+                                                status = switch_rtp_debug_jitter_buffer(tech_pvt-&gt;rtp_session, s);</span>
                                                 goto end;
                                         }
 
<span style="color: #000080; font-weight: bold">diff --git a/src/switch_rtp.c b/src/switch_rtp.c</span>
<span style="color: #000080; font-weight: bold">index 4df867a..200f4f0 100644</span>
<span style="color: #A00000">--- a/src/switch_rtp.c</span>
<span style="color: #00A000">+++ b/src/switch_rtp.c</span>
<span style="color: #800080; font-weight: bold">@@ -1875,7 +1875,7 @@ static void jb_logger(const char *file, const char *func, int line, int level, c</span>
 SWITCH_DECLARE(switch_status_t) switch_rtp_debug_jitter_buffer(switch_rtp_t *rtp_session, const char *name)
 {
 
<span style="color: #A00000">-        if (!switch_rtp_ready(rtp_session)) {</span>
<span style="color: #00A000">+        if (!switch_rtp_ready(rtp_session) || !rtp_session-&gt;jb) {</span>
                 return SWITCH_STATUS_FALSE;
         }
         
</pre></div>
========================================================================<pre>

Summary of changes:
 src/mod/endpoints/mod_sofia/mod_sofia.c |    2 +-
 src/switch_rtp.c                        |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
</pre>
<p>this email was generated because of /git/your-repo.git/hooks/post-receive by the file /git-core/contrib/hooks/post-receive-email<br />
For more info, see <a href="http://blog.chomperstomp.com/?p=630">http://blog.chomperstomp.com/?p=630</a>
-- <br />
FreeSWITCH Source</p>