summaryrefslogtreecommitdiff
path: root/vorbisfile.c
diff options
context:
space:
mode:
authorRalph Giles <giles@xiph.org>2006-01-09 02:10:04 +0000
committerRalph Giles <giles@xiph.org>2006-01-09 02:10:04 +0000
commit99ef5101f31f961c1cdf8f5133133bacf21f7e79 (patch)
tree551c75b683ab4f4405acc24c07e3be3361fe46ce /vorbisfile.c
parent521f4d211d5435e623992b09bbd1d8e21e7af3c2 (diff)
downloadtremor-99ef5101f31f961c1cdf8f5133133bacf21f7e79.tar.gz
Suppress some (spurious) uninitialized variable warnings.
git-svn-id: https://svn.xiph.org/trunk/Tremor@10710 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'vorbisfile.c')
-rw-r--r--vorbisfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vorbisfile.c b/vorbisfile.c
index 0da4e0c..50b43f2 100644
--- a/vorbisfile.c
+++ b/vorbisfile.c
@@ -987,7 +987,7 @@ int ov_raw_seek(OggVorbis_File *vf,ogg_int64_t pos){
int lastblock=0;
int accblock=0;
int thisblock;
- int eosflag;
+ int eosflag=0;
work_os=ogg_stream_create(vf->current_serialno); /* get the memory ready */
while(1){