diff options
author | Tim Angus <tim.angus@roslin.ed.ac.uk> | 2014-08-25 14:48:49 +0100 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2014-08-28 11:20:28 +0100 |
commit | 1593f5c3bf2286072ec1534a78658bd39b022d97 (patch) | |
tree | 27f1e58af9e72d8d143494b86cc4125bdbfaaff2 /src/opus-1.1/silk/float/solve_LS_FLP.c | |
parent | 2ce57fb40b35b657929d054c4b07dff9b6b71191 (diff) |
Fix assorted warnings
Diffstat (limited to 'src/opus-1.1/silk/float/solve_LS_FLP.c')
-rw-r--r-- | src/opus-1.1/silk/float/solve_LS_FLP.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opus-1.1/silk/float/solve_LS_FLP.c b/src/opus-1.1/silk/float/solve_LS_FLP.c index 7c90d665..b35f0a57 100644 --- a/src/opus-1.1/silk/float/solve_LS_FLP.c +++ b/src/opus-1.1/silk/float/solve_LS_FLP.c @@ -163,7 +163,7 @@ static OPUS_INLINE void silk_LDL_FLP( opus_int i, j, k, loop_count, err = 1; silk_float *ptr1, *ptr2; double temp, diag_min_value; - silk_float v[ MAX_MATRIX_SIZE ], D[ MAX_MATRIX_SIZE ]; /* temp arrays*/ + silk_float v[ MAX_MATRIX_SIZE ] = { 0 }, D[ MAX_MATRIX_SIZE ]; /* temp arrays*/ silk_assert( M <= MAX_MATRIX_SIZE ); |