--- a/mobilemessaging/postcard/postcardsrc/PostcardAppUi.cpp Thu Jan 07 12:45:05 2010 +0200
+++ b/mobilemessaging/postcard/postcardsrc/PostcardAppUi.cpp Mon Jan 18 20:16:40 2010 +0200
@@ -1773,14 +1773,14 @@
// ---------------------------------------------------------
void CPostcardAppUi::DoDelayedExit( TInt aDelayTime )
{
- if ( !iIdle )
+ // Coverty fix , Forward NULL http://ousrv057/cov.cgi?cid=36248
+ if ( iIdle )
{
-
- }
- iIdle->Cancel();
- iIdle->Start( aDelayTime,
+ iIdle->Cancel();
+ iIdle->Start( aDelayTime,
aDelayTime,
TCallBack( DelayedExit, this ));
+ }
}
// ---------------------------------------------------------