From 716e3fca9925cfecac1dd52bfad6e85a0d5e47e7 Mon Sep 17 00:00:00 2001 From: Michael West Date: Wed, 23 Oct 2013 15:32:16 -0700 Subject: CID 1104305: Fixed uninitialized scalar CID 1104304: Fixed uninitialized scalar --- host/lib/convert/convert_fc32_item32.cpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'host/lib/convert/convert_fc32_item32.cpp') diff --git a/host/lib/convert/convert_fc32_item32.cpp b/host/lib/convert/convert_fc32_item32.cpp index 29bfefd46..641fc2608 100644 --- a/host/lib/convert/convert_fc32_item32.cpp +++ b/host/lib/convert/convert_fc32_item32.cpp @@ -28,7 +28,7 @@ typedef boost::uint32_t (*to32_type)(boost::uint32_t); template struct convert_fc32_item32_1_to_star_1 : public converter { - convert_fc32_item32_1_to_star_1(void) + convert_fc32_item32_1_to_star_1(void):_scalar(0.0) { //NOP } @@ -48,9 +48,9 @@ struct convert_fc32_item32_1_to_star_1 : public converter { const item32_t i32 = tohost(input[i++]); const item32_t q32 = tohost(input[i++]); - const float i_f32 = reinterpret_cast(i32); - const float q_f32 = reinterpret_cast(q32); - output[o] = std::complex(type(i_f32*_scalar), type(q_f32*_scalar)); + const float *i_f32p = reinterpret_cast(&i32); + const float *q_f32p = reinterpret_cast(&q32); + output[o] = std::complex(type((*i_f32p)*_scalar), type((*q_f32p)*_scalar)); } } @@ -60,7 +60,7 @@ struct convert_fc32_item32_1_to_star_1 : public converter template struct convert_star_1_to_fc32_item32_1 : public converter { - convert_star_1_to_fc32_item32_1(void) + convert_star_1_to_fc32_item32_1(void):_scalar(0.0) { //NOP } @@ -80,9 +80,10 @@ struct convert_star_1_to_fc32_item32_1 : public converter { const float i_f32 = type(input[i].real()*_scalar); const float q_f32 = type(input[i].imag()*_scalar); - const item32_t i32 = towire(reinterpret_cast(i_f32)); - const item32_t q32 = towire(reinterpret_cast(q_f32)); - output[o++] = i32; output[o++] = q32; + const item32_t *i32p = reinterpret_cast(&i_f32); + const item32_t *q32p = reinterpret_cast(&q_f32); + output[o++] = towire(*i32p); + output[o++] = towire(*q32p); } } -- cgit v1.2.3