aboutsummaryrefslogtreecommitdiffstats
path: root/formats/format_wav.c
diff options
context:
space:
mode:
Diffstat (limited to 'formats/format_wav.c')
-rwxr-xr-xformats/format_wav.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/formats/format_wav.c b/formats/format_wav.c
index dbca8ed50..52f1508ab 100755
--- a/formats/format_wav.c
+++ b/formats/format_wav.c
@@ -525,8 +525,9 @@ static int wav_seek(struct ast_filestream *fs, long sample_offset, int whence)
offset = max - samples;
if (whence != SEEK_FORCECUR) {
offset = (offset > max)?max:offset;
- offset = (offset < min)?min:offset;
}
+ // always protect the header space.
+ offset = (offset < min)?min:offset;
return lseek(fs->fd,offset,SEEK_SET);
}