Skip to content

Commit

Permalink
HPCC-31649 Changes following review
Browse files Browse the repository at this point in the history
Signed-off-by: Shamser Ahmed <[email protected]>
  • Loading branch information
shamser committed Jun 12, 2024
1 parent 33b6a95 commit de5a065
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion thorlcr/thorutil/thbuf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,8 @@ class CSmartRowInMemoryBuffer: public CSimpleInterface, implements ISmartRowBuff

ISmartRowBuffer * createSmartBuffer(CActivityBase *activity, const char * tempname, size32_t buffsize, IThorRowInterfaces *rowif)
{
return new CSmartRowBuffer(activity,createIFile(tempname),buffsize,rowif);
Owned<IFile> file = createIFile(tempname);
return new CSmartRowBuffer(activity,file,buffsize,rowif);
}

ISmartRowBuffer * createSmartInMemoryBuffer(CActivityBase *activity, IThorRowInterfaces *rowIf, size32_t buffsize)
Expand Down

0 comments on commit de5a065

Please sign in to comment.