summaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorMichael West <michael.west@ettus.com>2013-10-23 15:42:05 -0700
committerMichael West <michael.west@ettus.com>2013-10-23 15:42:05 -0700
commit2ebb45abf033b7ecdced07d17f536fc1308a4506 (patch)
tree94171540cb6dfd5504b5f07f2166eba6d2616698 /host/lib
parenteb603e8058ab3117f9dbabddaeceb13015018139 (diff)
downloaduhd-2ebb45abf033b7ecdced07d17f536fc1308a4506.tar.gz
uhd-2ebb45abf033b7ecdced07d17f536fc1308a4506.tar.bz2
uhd-2ebb45abf033b7ecdced07d17f536fc1308a4506.zip
CID 1104312 Fixed uninitialied scalar
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/transport/super_send_packet_handler.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/transport/super_send_packet_handler.hpp b/host/lib/transport/super_send_packet_handler.hpp
index 41f030ea6..ae483d1f3 100644
--- a/host/lib/transport/super_send_packet_handler.hpp
+++ b/host/lib/transport/super_send_packet_handler.hpp
@@ -239,7 +239,7 @@ private:
size_t _header_offset_words32;
double _tick_rate, _samp_rate;
struct xport_chan_props_type{
- xport_chan_props_type(void):has_sid(false){}
+ xport_chan_props_type(void):has_sid(false),sid(0){}
get_buff_type get_buff;
bool has_sid;
boost::uint32_t sid;