From: Russell Bryant Date: Sat, 8 Nov 2008 21:34:36 +0000 (+0000) Subject: Remove some code that is basically a no-op. Code above this already ensures that X-Git-Tag: 1.6.2.0-beta1~905 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=648ea2aab953f9026699ccea4a82559cb7c2649e;p=thirdparty%2Fasterisk.git Remove some code that is basically a no-op. Code above this already ensures that the buffer is terminated. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@155513 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index f13a12856b..4ef90c7a6b 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -20136,12 +20136,6 @@ static int sipsock_read(int *id, int fd, short events, void *ignore) if (!(req.data = ast_str_create(SIP_MIN_PACKET))) return 1; ast_str_set(&req.data, 0, "%s", readbuf); - if (res == sizeof(req.data) - 1) { - ast_debug(1, "Received packet exceeds buffer. Data is possibly lost\n"); - req.data->str[sizeof(req.data) - 1] = '\0'; - } else - req.data->str[res] = '\0'; - req.len = res; req.socket.fd = sipsock; req.socket.type = SIP_TRANSPORT_UDP;