From f62bdd588eeb209bf85f41943a07faba4f7ebc47 Mon Sep 17 00:00:00 2001
From: Moritz Fischer <moritz.fischer@ettus.com>
Date: Sun, 6 Oct 2013 16:53:07 -0400
Subject: Fixing CID 1043296: Trivial UNINIT.

Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
---
 gr-vocoder/lib/codec2/quantise.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'gr-vocoder/lib')

diff --git a/gr-vocoder/lib/codec2/quantise.c b/gr-vocoder/lib/codec2/quantise.c
index a44eceee9c..25f26066ed 100644
--- a/gr-vocoder/lib/codec2/quantise.c
+++ b/gr-vocoder/lib/codec2/quantise.c
@@ -166,7 +166,7 @@ void lspd_quantise(
     float dlsp_[LPC_MAX];
     float  wt[1];
     const float *cb;
-    float se;
+    float se = 0.0;
     int   indexes[LPC_MAX];
 
     /* convert from radians to Hz so we can use human readable
@@ -227,7 +227,7 @@ void lspdvq_quantise(
     float dlsp_[LPC_MAX];
     float  wt[LPC_ORD];
     const float *cb;
-    float se;
+    float se = 0.0;
     int   index;
 
     dlsp[0] = lsp[0];
@@ -359,7 +359,7 @@ float lpc_model_amplitudes(
   float lsp_[LPC_MAX];
   int   roots;                  /* number of LSP roots found */
   int   index;
-  float se;
+  float se = 0.0;
   int   k,m;
   const float * cb;
   float wt[LPC_MAX];
-- 
cgit v1.2.3