Skip to content
Snippets Groups Projects
Commit 27787e21 authored by Mark Spencer's avatar Mark Spencer
Browse files

Fix ADPCM file writing

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1535 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 27294b83
No related branches found
No related tags found
No related merge requests found
......@@ -274,7 +274,7 @@ static int vox_write(struct ast_filestream *fs, struct ast_frame *f)
ast_log(LOG_WARNING, "Invalid frame of data (< 3 bytes long) from %s\n", f->src);
return -1;
}
if ((res = write(fs->fd, f->data + 3, f->datalen)) != f->datalen) {
if ((res = write(fs->fd, f->data + 3, f->datalen - 3)) != f->datalen - 3) {
ast_log(LOG_WARNING, "Bad write (%d/%d): %s\n", res, f->datalen, strerror(errno));
return -1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment