]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix broken usage of sizeof() in res_adsi.
authorRussell Bryant <russell@russellbryant.com>
Wed, 14 Mar 2012 00:27:31 +0000 (00:27 +0000)
committerRussell Bryant <russell@russellbryant.com>
Wed, 14 Mar 2012 00:27:31 +0000 (00:27 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@359088 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_adsi.c

index 48c5ab59dacd5a2767a1acfd1a229a6884e98aed..0235bea1a2f23e3bd62a1dd6ba0ad9ba5a302b75 100644 (file)
@@ -586,7 +586,7 @@ int AST_OPTIONAL_API_NAME(ast_adsi_read_encoded_dtmf)(struct ast_channel *chan,
        int bytes = 0, res, gotstar = 0, pos = 0;
        unsigned char current = 0;
 
-       memset(buf, 0, sizeof(buf));
+       memset(buf, 0, maxlen);
 
        while (bytes <= maxlen) {
                /* Wait up to a second for a digit */