OSDN Git Service

ac3enc: fix 'warning: block0 may be used uninitialized in this function'
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 29 Jan 2013 15:15:02 +0000 (16:15 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 29 Jan 2013 15:15:02 +0000 (16:15 +0100)
The pointer is also initialized to NULL for safety.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/ac3enc_template.c

index 904e0bb..b1174dc 100644 (file)
@@ -336,7 +336,7 @@ static void compute_rematrixing_strategy(AC3EncodeContext *s)
 {
     int nb_coefs;
     int blk, bnd;
-    AC3Block *block, *block0;
+    AC3Block *block, *block0 = NULL;
 
     if (s->channel_mode != AC3_CHMODE_STEREO)
         return;