summaryrefslogtreecommitdiff
path: root/formats/format_pcm_alaw.c
diff options
context:
space:
mode:
Diffstat (limited to 'formats/format_pcm_alaw.c')
-rwxr-xr-xformats/format_pcm_alaw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/formats/format_pcm_alaw.c b/formats/format_pcm_alaw.c
index 62103068d..db6b0c3d0 100755
--- a/formats/format_pcm_alaw.c
+++ b/formats/format_pcm_alaw.c
@@ -253,8 +253,9 @@ static int pcm_seek(struct ast_filestream *fs, long sample_offset, int whence)
offset = max - sample_offset;
if (whence != SEEK_FORCECUR) {
offset = (offset > max)?max:offset;
- offset = (offset < min)?min:offset;
}
+ // Always protect against seeking past begining
+ offset = (offset < min)?min:offset;
return lseek(fs->fd, offset, SEEK_SET);
}