aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorAndrej Rode <andrej.rode@ettus.com>2017-04-25 12:30:33 -0700
committerMartin Braun <martin.braun@ettus.com>2017-04-25 17:15:13 -0700
commitd2a354bbe4b8ecd81f5c3bdb459a9ae822f91e9a (patch)
tree05f80977c66939156f77ea35fcaff18c9075b43f /host/lib
parent86c74ee9b497da42df30870a7943f011151b7a49 (diff)
downloaduhd-d2a354bbe4b8ecd81f5c3bdb459a9ae822f91e9a.tar.gz
uhd-d2a354bbe4b8ecd81f5c3bdb459a9ae822f91e9a.tar.bz2
uhd-d2a354bbe4b8ecd81f5c3bdb459a9ae822f91e9a.zip
uhd: cast thread_group.create_thread() return value to void to avoid memory leak
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/utils/tasks.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/utils/tasks.cpp b/host/lib/utils/tasks.cpp
index 1e8f50736..661315ae8 100644
--- a/host/lib/utils/tasks.cpp
+++ b/host/lib/utils/tasks.cpp
@@ -32,7 +32,7 @@ public:
task_impl(const task_fcn_type &task_fcn):
_spawn_barrier(2)
{
- _thread_group.create_thread(boost::bind(&task_impl::task_loop, this, task_fcn));
+ (void)_thread_group.create_thread(boost::bind(&task_impl::task_loop, this, task_fcn));
_spawn_barrier.wait();
}
@@ -99,7 +99,7 @@ public:
msg_task_impl(const task_fcn_type &task_fcn):
_spawn_barrier(2)
{
- _thread_group.create_thread(boost::bind(&msg_task_impl::task_loop, this, task_fcn));
+ (void)_thread_group.create_thread(boost::bind(&msg_task_impl::task_loop, this, task_fcn));
_spawn_barrier.wait();
}