break 2 loops instead of 1
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1813 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
b9195e2db9
commit
cdac907624
|
@ -1545,7 +1545,7 @@ static switch_status_t parse_sdp_media(struct private_object *tech_pvt, sdp_medi
|
|||
*dpayload = strdup(payload);
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Found negotiated codec Payload: %s Name: %s Rate: %s\n",
|
||||
*dpayload, *dname, *drate);
|
||||
break;
|
||||
goto done;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1553,6 +1553,7 @@ static switch_status_t parse_sdp_media(struct private_object *tech_pvt, sdp_medi
|
|||
attr = NULL;
|
||||
pos++;
|
||||
}
|
||||
done:
|
||||
|
||||
return status;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue