diff options
author | Michael West <michael.west@ettus.com> | 2013-10-28 12:41:45 -0700 |
---|---|---|
committer | Michael West <michael.west@ettus.com> | 2013-10-28 12:41:45 -0700 |
commit | 93a8aed40060cee536a4257f52f27bafdb8a014c (patch) | |
tree | 2725a20922069413215fb86a297fcc4090282b65 | |
parent | 5c8aef184bb8d5654565d4b961696e6681178bc8 (diff) | |
download | uhd-93a8aed40060cee536a4257f52f27bafdb8a014c.tar.gz uhd-93a8aed40060cee536a4257f52f27bafdb8a014c.tar.bz2 uhd-93a8aed40060cee536a4257f52f27bafdb8a014c.zip |
CID 1104317: Fixed uninitialized scalar.
-rw-r--r-- | host/lib/usrp/cores/rx_frontend_core_200.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/cores/rx_frontend_core_200.cpp b/host/lib/usrp/cores/rx_frontend_core_200.cpp index 09b36c1a6..864b5cc53 100644 --- a/host/lib/usrp/cores/rx_frontend_core_200.cpp +++ b/host/lib/usrp/cores/rx_frontend_core_200.cpp @@ -38,7 +38,7 @@ static boost::uint32_t fs_to_bits(const double num, const size_t bits){ class rx_frontend_core_200_impl : public rx_frontend_core_200{ public: rx_frontend_core_200_impl(wb_iface::sptr iface, const size_t base): - _iface(iface), _base(base) + _i_dc_off(0), _q_dc_off(0), _iface(iface), _base(base) { //NOP } |