From: Erich Keane Date: Thu, 2 Oct 2014 18:07:32 +0000 (-0700) Subject: IOT-57 fix. We were mis-assigning a pointer during construction X-Git-Tag: 1.2.0+RC1~2196^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a23f2ad09de91d4ccab9b94a2b6a24eef78cf777;p=platform%2Fupstream%2Fiotivity.git IOT-57 fix. We were mis-assigning a pointer during construction Change-Id: Ifc2301b6b7a9146940290c00d1fb13568e8472a9 --- 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