Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Vorbis
Commits
d701313f
Commit
d701313f
authored
Jul 10, 2009
by
Monty
Browse files
Eliminate a correct but harmless 'unititialized variable' warning from libvorbisfile compile.
svn path=/trunk/vorbis/; revision=16246
parent
b6d6e636
Changes
1
Show whitespace changes
Inline
Side-by-side
lib/vorbisfile.c
View file @
d701313f
...
...
@@ -229,8 +229,8 @@ static ogg_int64_t _get_prev_page_serial(OggVorbis_File *vf,
ogg_int64_t
prefoffset
=-
1
;
ogg_int64_t
offset
=-
1
;
ogg_int64_t
ret_serialno
;
ogg_int64_t
ret_gran
;
ogg_int64_t
ret_serialno
=-
1
;
ogg_int64_t
ret_gran
=-
1
;
while
(
offset
==-
1
){
begin
-=
CHUNKSIZE
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment