From a23f2ad09de91d4ccab9b94a2b6a24eef78cf777 Mon Sep 17 00:00:00 2001 From: Erich Keane Date: Thu, 2 Oct 2014 11:07:32 -0700 Subject: [PATCH] IOT-57 fix. We were mis-assigning a pointer during construction Change-Id: Ifc2301b6b7a9146940290c00d1fb13568e8472a9 --- src/InProcClientWrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/InProcClientWrapper.cpp b/src/InProcClientWrapper.cpp index fb00d60..457a8f0 100644 --- a/src/InProcClientWrapper.cpp +++ b/src/InProcClientWrapper.cpp @@ -33,7 +33,7 @@ namespace OC InProcClientWrapper::InProcClientWrapper(OC::OCPlatform& owner, std::weak_ptr csdkLock, PlatformConfig cfg) : IClientWrapper(owner), m_threadRun(false), m_csdkLock(csdkLock), - m_owner(m_owner), + m_owner(owner), m_cfg { cfg } { // if the config type is server, we ought to never get called. If the config type -- 2.7.4