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
1.6.2
Russell Bryant 17 years ago
parent 111203aed9
commit 648ea2aab9

@ -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;

Loading…
Cancel
Save