diff -r d141fc1ad77b -r e61a04404bdf mpx/commonframework/common/src/mpxheapmanager.cpp --- a/mpx/commonframework/common/src/mpxheapmanager.cpp Tue Jul 06 14:48:59 2010 +0300 +++ b/mpx/commonframework/common/src/mpxheapmanager.cpp Wed Aug 18 10:16:02 2010 +0300 @@ -80,7 +80,7 @@ // // Create first free heap cell // - RMPXHeapCell* cell=new(aChunk.Base()+hmSize)RMPXHeapCell(0,iEndOffset-hmSize); + new(aChunk.Base()+hmSize)RMPXHeapCell(0,iEndOffset-hmSize); // set up free cell list header iFree.iNextOffset = hmSize; iFree.iLen = 0;