--- a/vtengines/videoteleng/Src/Base/cvtengmediatorservice.cpp Tue Sep 14 21:23:32 2010 +0300
+++ b/vtengines/videoteleng/Src/Base/cvtengmediatorservice.cpp Wed Sep 15 12:15:42 2010 +0300
@@ -251,7 +251,9 @@
aCommand,
iUtils.StateManager()->Handlers(),
*this );
- iOperation->ExecuteL();
+ CleanupStack::PushL( iOperation );//add for memory leak
+ iOperation->ExecuteL();//it could be leave
+ CleanupStack::Pop(); // iOperation
iServiceStatus = KRequestPending;
__VTPRINTEXIT( "CVtEngMediatorService.StartOperationL" )
}