]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Make sure 10 byte read is considered EOF not error (bug #3505)
authorRussell Bryant <russell@russellbryant.com>
Mon, 7 Feb 2005 04:29:19 +0000 (04:29 +0000)
committerRussell Bryant <russell@russellbryant.com>
Mon, 7 Feb 2005 04:29:19 +0000 (04:29 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4978 65c4cc65-6c06-0410-ace0-fbb531ad65f3

formats/format_g729.c

index 746874d7dffa806954d47893065210e99d84c133..55b5fcbb9ea06463f42b190e61c02ac9392fefc5 100755 (executable)
@@ -130,7 +130,7 @@ static struct ast_frame *g729_read(struct ast_filestream *s, int *whennext)
        s->fr.mallocd = 0;
        s->fr.data = s->g729;
        if ((res = read(s->fd, s->g729, 20)) != 20) {
-               if (res)
+               if (res && (res != 10))
                        ast_log(LOG_WARNING, "Short read (%d) (%s)!\n", res, strerror(errno));
                return NULL;
        }