summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor/bitwise.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/Tremor/bitwise.c')
-rw-r--r--apps/codecs/Tremor/bitwise.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/Tremor/bitwise.c b/apps/codecs/Tremor/bitwise.c
index ccb82b0f3f..6215b0f5ac 100644
--- a/apps/codecs/Tremor/bitwise.c
+++ b/apps/codecs/Tremor/bitwise.c
@@ -81,7 +81,7 @@ void oggpack_readinit(oggpack_buffer *b,ogg_reference *r){
/* Read in bits without advancing the bitptr; bits <= 32 */
long oggpack_look(oggpack_buffer *b,int bits){
unsigned long m=mask[bits];
- unsigned long ret;
+ unsigned long ret=0;
bits+=b->headbit;
@@ -175,7 +175,7 @@ int oggpack_eop(oggpack_buffer *b){
/* bits <= 32 */
long oggpack_read(oggpack_buffer *b,int bits){
unsigned long m=mask[bits];
- ogg_uint32_t ret;
+ ogg_uint32_t ret=0;
bits+=b->headbit;