From a741658f58f03d3299aafd5f9c4cf400897c13ae Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 12 Feb 2009 21:41:01 +0000 Subject: Remove useless string copy, and make sscanf safe again git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@175368 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'channels') diff --git a/channels/chan_sip.c b/channels/chan_sip.c index b5dbdeca8..f0a7fb9e3 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -7671,7 +7671,6 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action iterator = req->sdp_start; while ((a = get_sdp_iterate(&iterator, req, "a"))[0] != '\0') { char mimeSubtype[128]; - ast_copy_string(mimeSubtype, a, sizeof(mimeSubtype)); if (option_debug > 1) { int breakout = FALSE; @@ -7759,7 +7758,7 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action } red_cp = red_fmtp; - } else if (sscanf(a, "rtpmap: %u %[^/]/", &codec, mimeSubtype) == 2) { + } else if (sscanf(a, "rtpmap: %u %127[^/]/", &codec, mimeSubtype) == 2) { /* We have a rtpmap to handle */ if (last_rtpmap_codec < SDP_MAX_RTPMAP_CODECS) { -- cgit v1.2.3