mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Make sure 10 byte read is considered EOF not error (bug #3505)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4965 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -134,7 +134,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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user