aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-13 22:12:25 +0000
committertzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-13 22:12:25 +0000
commit0c0108543ef59068bd9b9efabc78e92b7178e75a (patch)
treee4acadbfc5ecc422b3def8e438555e06d98952c3
parent44be77c8ceeff9a55237f75141dd697cc847dce0 (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). Merged revisions 218184 via svnmerge from http://svn.digium.com/svn/asterisk/trunk git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@218219 f38db490-d61c-443f-a65b-d21fe96a405b
-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 d2df736c4..295d2eb89 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);