Tue May 20 09:35:46 EDT 2008 Pekka.Pessi@nokia.com

* soa_static.c: fixed klocwork issues


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8618 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-05-25 15:06:27 +00:00
parent 9273f923ae
commit b7c3d6c14a
2 changed files with 5 additions and 1 deletions

View File

@ -1 +1 @@
Sun May 25 11:05:03 EDT 2008
Sun May 25 11:06:22 EDT 2008

View File

@ -1117,6 +1117,8 @@ static int offer_answer_step(soa_session_t *ss,
if (action == generate_offer)
remote = NULL;
else if (remote == NULL)
return soa_set_status(ss, 500, "No remote SDP");
/* Pre-negotiation Step: Expand truncated remote SDP */
if (local && remote) switch (action) {
@ -1127,6 +1129,8 @@ static int offer_answer_step(soa_session_t *ss,
SU_DEBUG_5(("%s: remote %s is truncated: expanding\n",
by, action == generate_answer ? "offer" : "answer"));
remote = soa_sdp_expand_media(tmphome, remote, local);
if (remote == NULL)
return soa_set_status(ss, 500, "Cannot expand remote session");
}
default:
break;