Skip to content

Commit 3bbe741

Browse files
shankarprashanthgfxbot
authored andcommitted
Fix Exception issue for shared resources
Change-Id: I65b4f1b0ae29e736ba3669b097feff2ae5516303 Signed-off-by: drprajap <[email protected]>
1 parent fe0fc5a commit 3bbe741

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

Source/GmmLib/GlobalInfo/GmmClientContext.cpp

+17-2
Original file line numberDiff line numberDiff line change
@@ -333,10 +333,17 @@ GMM_RESOURCE_INFO *GMM_STDCALL GmmLib::GmmClientContext::CreateResInfoObject(GMM
333333
GMM_RESOURCE_INFO *GMM_STDCALL GmmLib::GmmClientContext::CopyResInfoObject(GMM_RESOURCE_INFO *pSrcRes)
334334
{
335335
GMM_RESOURCE_INFO *pResCopy = NULL;
336+
GmmClientContext * pClientContextIn = NULL;
337+
338+
#if(!defined(GMM_UNIFIED_LIB))
339+
pClientContextIn = pGmmGlobalContext->pGmmGlobalClientContext;
340+
#else
341+
pClientContextIn = this;
342+
#endif
336343

337344
__GMM_ASSERTPTR(pSrcRes, NULL);
338345

339-
pResCopy = new GMM_RESOURCE_INFO;
346+
pResCopy = new GMM_RESOURCE_INFO(pClientContextIn);
340347
if(!pResCopy)
341348
{
342349
GMM_ASSERTDPF(0, "Allocation failed.");
@@ -361,9 +368,17 @@ GMM_RESOURCE_INFO *GMM_STDCALL GmmLib::GmmClientContext::CopyResInfoObject(GMM_R
361368
/////////////////////////////////////////////////////////////////////////////////////
362369
void GMM_STDCALL GmmLib::GmmClientContext::ResMemcpy(void *pDst, void *pSrc)
363370
{
371+
GmmClientContext *pClientContextIn = NULL;
372+
373+
#if(!defined(GMM_UNIFIED_LIB))
374+
pClientContextIn = pGmmGlobalContext->pGmmGlobalClientContext;
375+
#else
376+
pClientContextIn = this;
377+
#endif
378+
364379
GMM_RESOURCE_INFO *pResSrc = reinterpret_cast<GMM_RESOURCE_INFO *>(pSrc);
365380
// Init memory correctly, in case the pointer is a raw memory pointer
366-
GMM_RESOURCE_INFO *pResDst = new(pDst) GMM_RESOURCE_INFO();
381+
GMM_RESOURCE_INFO *pResDst = new(pDst) GMM_RESOURCE_INFO(pClientContextIn);
367382

368383
*pResDst = *pResSrc;
369384
}

Source/GmmLib/inc/External/Common/GmmResourceInfoCommon.h

-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ namespace GmmLib
174174
SvmAddress = rhs.SvmAddress;
175175
pPrivateData = rhs.pPrivateData;
176176
pGmmLibContext = rhs.pGmmLibContext;
177-
pClientContext = rhs.pClientContext;
178177

179178
return *this;
180179
}

0 commit comments

Comments
 (0)