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

<h2>branch: master updated</h2>
<pre>
       via: 2401fec54b48d8dfb1ec5a2f33a092dac076c0f3 (commit)
      from: 330d741853f4f7c548b61dbcb717266a2bf24107 (commit)


</pre>= COMMIT LOG ===========================================================
<div class="highlight"><pre>committer: Anthony Minessale
comments: 
minor regression from 4ae8282e6c6df0e296113e9b4b4a1383e1af8ad7 (sofia_contact with no args from cli caused 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 c683203..2a2ec63 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">@@ -3458,7 +3458,7 @@ SWITCH_STANDARD_API(sofia_contact_function)</span>
 {
         char *data;
         char *user = NULL;
<span style="color: #A00000">-        char *domain = NULL;</span>
<span style="color: #00A000">+        char *domain = NULL, *dup_domain = NULL;</span>
         char *concat = NULL;
         char *profile_name = NULL;
         char *p;
<span style="color: #800080; font-weight: bold">@@ -3501,7 +3501,8 @@ SWITCH_STANDARD_API(sofia_contact_function)</span>
         }
 
         if (zstr(domain)) {
<span style="color: #A00000">-                domain = switch_core_get_variable_pdup(&quot;domain&quot;, switch_core_session_get_pool(session));</span>
<span style="color: #00A000">+                dup_domain = switch_core_get_variable_dup(&quot;domain&quot;);</span>
<span style="color: #00A000">+                domain = dup_domain;</span>
         }
 
         if (!user) goto end;
<span style="color: #800080; font-weight: bold">@@ -3567,6 +3568,7 @@ SWITCH_STANDARD_API(sofia_contact_function)</span>
         switch_safe_free(mystream.data);                                        
 
         switch_safe_free(data);
<span style="color: #00A000">+        switch_safe_free(dup_domain);</span>
 
         return SWITCH_STATUS_SUCCESS;
 }
</pre></div>
========================================================================<pre>

Summary of changes:
 src/mod/endpoints/mod_sofia/mod_sofia.c |    6 ++++--
 1 files changed, 4 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>