From 2d765292793639471b70ac5964a49e83657f2d80 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Thu, 2 Jun 2005 17:54:09 +0000 Subject: [PATCH] Fix offset calculation for signed linear (bug #4433) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5815 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- formats/format_sln.c | 1 + 1 file changed, 1 insertion(+) diff --git a/formats/format_sln.c b/formats/format_sln.c index d5c562a01e..0ae19af67b 100755 --- a/formats/format_sln.c +++ b/formats/format_sln.c @@ -156,6 +156,7 @@ static int slinear_seek(struct ast_filestream *fs, long sample_offset, int whenc off_t offset=0,min,cur,max; min = 0; + sample_offset <<= 1; cur = lseek(fs->fd, 0, SEEK_CUR); max = lseek(fs->fd, 0, SEEK_END); if (whence == SEEK_SET)