aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples
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/examples
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/examples')
-rw-r--r--host/examples/network_relay.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/examples/network_relay.cpp b/host/examples/network_relay.cpp
index b16bcaaa5..7e354934a 100644
--- a/host/examples/network_relay.cpp
+++ b/host/examples/network_relay.cpp
@@ -100,9 +100,9 @@ public:
std::cout << "spawning relay threads... " << _port << std::endl;
boost::unique_lock<boost::mutex> lock(spawn_mutex); // lock in preparation to wait for threads to spawn
- _thread_group.create_thread(boost::bind(&udp_relay_type::server_thread, this));
+ (void)_thread_group.create_thread(boost::bind(&udp_relay_type::server_thread, this));
wait_for_thread.wait(lock); // wait for thread to spin up
- _thread_group.create_thread(boost::bind(&udp_relay_type::client_thread, this));
+ (void)_thread_group.create_thread(boost::bind(&udp_relay_type::client_thread, this));
wait_for_thread.wait(lock); // wait for thread to spin up
std::cout << " done!" << std::endl << std::endl;
}