From 8edbe1dc0dab3bb03da2f43e33837dd965309b6e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 1 Jul 2016 08:43:32 +0100 Subject: [PATCH] Added initiaizer --- src/osgPlugins/osc/ip/posix/UdpSocket.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osgPlugins/osc/ip/posix/UdpSocket.cpp b/src/osgPlugins/osc/ip/posix/UdpSocket.cpp index 5b49d9c96..81385fb03 100644 --- a/src/osgPlugins/osc/ip/posix/UdpSocket.cpp +++ b/src/osgPlugins/osc/ip/posix/UdpSocket.cpp @@ -325,6 +325,7 @@ class SocketReceiveMultiplexer::Implementation{ public: Implementation() { + break_ = false; if( pipe(breakPipe_) != 0 ) throw std::runtime_error( "creation of asynchronous break pipes failed\n" ); }