]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix wave file lengths (bug #2486)
authorRussell Bryant <russell@russellbryant.com>
Sat, 9 Oct 2004 16:32:21 +0000 (16:32 +0000)
committerRussell Bryant <russell@russellbryant.com>
Sat, 9 Oct 2004 16:32:21 +0000 (16:32 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@3963 65c4cc65-6c06-0410-ace0-fbb531ad65f3

formats/format_wav_gsm.c

index 9fcc3c9cebfd837284a72de9f2782c2e14bb9491..5b4d31f6a5658844e0642650537e415198130308 100755 (executable)
@@ -219,7 +219,7 @@ static int update_header(int fd)
        end = lseek(fd, 0, SEEK_END);
        /* in a gsm WAV, data starts 60 bytes in */
        bytes = end - 60;
-       datalen = htoll(bytes);
+       datalen = htoll((bytes + 1) & ~0x1);
        filelen = htoll(52 + ((bytes + 1) & ~0x1));
        if (cur < 0) {
                ast_log(LOG_WARNING, "Unable to find our position\n");