aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael West <michael.west@ettus.com>2013-10-28 12:50:06 -0700
committerMichael West <michael.west@ettus.com>2013-10-28 12:50:06 -0700
commitc2fb820b4d16a42a79b45d413409012261666080 (patch)
tree01757f21c7dbcb64e60e21526696849a2a0d7bf9
parent59838462b144b7b0cf8fdf5709aba9852dffd337 (diff)
downloaduhd-c2fb820b4d16a42a79b45d413409012261666080.tar.gz
uhd-c2fb820b4d16a42a79b45d413409012261666080.tar.bz2
uhd-c2fb820b4d16a42a79b45d413409012261666080.zip
CID 1104320: Fixed uninitialized scalar.
-rw-r--r--host/lib/usrp/usrp1/io_impl.cpp2
1 files changed, 1 insertions, 1 deletions
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 */
}