diff options
author | Jörgen Scott <jorgen.scott@gmail.com> | 2015-03-10 08:47:16 +0100 |
---|---|---|
committer | Jörgen Scott <jorgen.scott@gmail.com> | 2015-03-10 08:47:16 +0100 |
commit | 414937620c2e8bc3ad0b7181e90d320a05369db3 (patch) | |
tree | e5fe09cddd9a61e1d25cd5f6912a10ce58288b7f | |
parent | 958e286699348c1c2110155efd2a1682fb6a1ac4 (diff) | |
download | dabmod-414937620c2e8bc3ad0b7181e90d320a05369db3.tar.gz dabmod-414937620c2e8bc3ad0b7181e90d320a05369db3.tar.bz2 dabmod-414937620c2e8bc3ad0b7181e90d320a05369db3.zip |
fixed initialization bug
-rw-r--r-- | doc/zmq-ctrl/cpp/OdrModCtrl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/zmq-ctrl/cpp/OdrModCtrl.cpp b/doc/zmq-ctrl/cpp/OdrModCtrl.cpp index 731a9af..416ffcd 100644 --- a/doc/zmq-ctrl/cpp/OdrModCtrl.cpp +++ b/doc/zmq-ctrl/cpp/OdrModCtrl.cpp @@ -51,6 +51,7 @@ COdrModCtrl::COdrModCtrl(zmq::context_t *pContext, std::string odrEndpoint, m_pContext = pContext; m_odrEndpoint = odrEndpoint; m_timeoutMs = (uint32_t) timeoutMs; + m_pReqSocket = NULL; } COdrModCtrl::~COdrModCtrl() |