# HG changeset patch # User jbr # Date 1234823027 0 # Node ID 49817775b44f5944a2c10a0d29e1e18ac5523987 # Parent 533777a86f123b5cee1919a3616a283a86c0ab67 flacdec: Silence false positive warning about uninitialized variables in decode_subframe_fixed(). Patch by Patrik Kullman (patrik A yes D nu). diff -r 533777a86f12 -r 49817775b44f flacdec.c --- a/flacdec.c Mon Feb 16 18:19:48 2009 +0000 +++ b/flacdec.c Mon Feb 16 22:23:47 2009 +0000 @@ -276,7 +276,7 @@ { const int blocksize = s->blocksize; int32_t *decoded = s->decoded[channel]; - int a, b, c, d, i; + int av_uninit(a), av_uninit(b), av_uninit(c), av_uninit(d), i; /* warm up samples */ for (i = 0; i < pred_order; i++) {