summaryrefslogtreecommitdiff
path: root/channels/chan_phone.c
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2009-09-13 17:34:11 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2009-09-13 17:34:11 +0000
commitadde72d7b1c504ee607760790c933209267635af (patch)
treef46a1eb0ed706e521de268b769ccb6c8a57532e5 /channels/chan_phone.c
parent2aa112b4d7509ef0ad3077d7075117d0b5844659 (diff)
gcc 4.4: Remove a nop memset size 0 that annoys gcc
This memset doesn't write beyond the end of the buffer. (tmpbuf has size of 4). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@218184 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_phone.c')
-rw-r--r--channels/chan_phone.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/channels/chan_phone.c b/channels/chan_phone.c
index 6e0029199..736fb2708 100644
--- a/channels/chan_phone.c
+++ b/channels/chan_phone.c
@@ -807,7 +807,6 @@ static int phone_write(struct ast_channel *ast, struct ast_frame *frame)
we have to pad it to 24 bytes still. */
if (frame->datalen == 4) {
if (p->silencesupression) {
- (void) memset(tmpbuf + 4, 0, sizeof(tmpbuf) - 4);
memcpy(tmpbuf, frame->data.ptr, 4);
expected = 24;
res = phone_write_buf(p, tmpbuf, expected, maxfr, 0);