aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_mgcp.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-12 10:11:36 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-12 10:11:36 +0000
commit199ef7e3d8b7c1c8d5d34ad31ce1f0855f1a3c5b (patch)
tree277102fdb207ddd1fbfdc504e3c66c5a074cae77 /channels/chan_mgcp.c
parent593c44bc4355b2c4cc98b15d3a5ec7bb197100b5 (diff)
Always specify which RTP engine is desired for a new RTP instance.
This fixes a crash reported in #asterisk-dev where chan_mgcp unexpectedly allocated an RTP instance from res_rtp_multicast, since by not specifying an engine, you get the first one in the list of engines. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@211732 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_mgcp.c')
-rw-r--r--channels/chan_mgcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_mgcp.c b/channels/chan_mgcp.c
index d74fc9daf..cc0125031 100644
--- a/channels/chan_mgcp.c
+++ b/channels/chan_mgcp.c
@@ -2614,7 +2614,7 @@ static void start_rtp(struct mgcp_subchannel *sub)
sub->rtp = NULL;
}
/* Allocate the RTP now */
- sub->rtp = ast_rtp_instance_new(NULL, sched, &bindaddr, NULL);
+ sub->rtp = ast_rtp_instance_new("asterisk", sched, &bindaddr, NULL);
if (sub->rtp && sub->owner)
ast_channel_set_fd(sub->owner, 0, ast_rtp_instance_fd(sub->rtp, 0));
if (sub->rtp) {