summaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorMichael West <michael.west@ettus.com>2013-10-23 15:41:21 -0700
committerMichael West <michael.west@ettus.com>2013-10-23 15:41:21 -0700
commiteb603e8058ab3117f9dbabddaeceb13015018139 (patch)
tree0185972eebd5bbb41340bca06238465617c57cab /host
parentd50a270988a3c9603ce80d3c9d3c4614619bb0a4 (diff)
downloaduhd-eb603e8058ab3117f9dbabddaeceb13015018139.tar.gz
uhd-eb603e8058ab3117f9dbabddaeceb13015018139.tar.bz2
uhd-eb603e8058ab3117f9dbabddaeceb13015018139.zip
CID 1104307: Fixed uninitialized scalar
Diffstat (limited to 'host')
-rw-r--r--host/lib/transport/super_recv_packet_handler.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/transport/super_recv_packet_handler.hpp b/host/lib/transport/super_recv_packet_handler.hpp
index 688228e49..5080182d6 100644
--- a/host/lib/transport/super_recv_packet_handler.hpp
+++ b/host/lib/transport/super_recv_packet_handler.hpp
@@ -246,7 +246,8 @@ private:
struct xport_chan_props_type{
xport_chan_props_type(void):
packet_count(0),
- handle_overflow(&handle_overflow_nop)
+ handle_overflow(&handle_overflow_nop),
+ fc_update_window(0)
{}
get_buff_type get_buff;
issue_stream_cmd_type issue_stream_cmd;