From c2fb820b4d16a42a79b45d413409012261666080 Mon Sep 17 00:00:00 2001 From: Michael West Date: Mon, 28 Oct 2013 12:50:06 -0700 Subject: CID 1104320: Fixed uninitialized scalar. --- host/lib/usrp/usrp1/io_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host') diff --git a/host/lib/usrp/usrp1/io_impl.cpp b/host/lib/usrp/usrp1/io_impl.cpp index d384eb13f..e1f17e5a6 100644 --- a/host/lib/usrp/usrp1/io_impl.cpp +++ b/host/lib/usrp/usrp1/io_impl.cpp @@ -63,7 +63,7 @@ static const size_t alignment_padding = 512; * Helper struct to associate an offset with a buffer **********************************************************************/ struct offset_send_buffer{ - offset_send_buffer(void){ + offset_send_buffer(void):offset(0){ /* NOP */ } -- cgit v1.2.3