locationmapnavfw/library/inc/mndebug.h
branchRCL_3
changeset 13 19bff11d6c18
parent 0 667063e416a2
--- a/locationmapnavfw/library/inc/mndebug.h	Fri Mar 12 15:44:22 2010 +0200
+++ b/locationmapnavfw/library/inc/mndebug.h	Mon Mar 15 12:42:19 2010 +0200
@@ -47,7 +47,9 @@
 
 inline void Log( TRefByValue<const TDesC> aFmt, ... )
     {
+    // coverity[var_decl : FALSE]
     VA_LIST list;
+    // coverity[ uninit_use_in_call : FALSE]
     VA_START( list, aFmt );
 
     HBufC* buf = HBufC::New(512);
@@ -55,6 +57,7 @@
     	{
     	TPtr ptr( buf->Des() );
 	    Prefix( ptr );
+	    // coverity[ uninit_use_in_call : FALSE]
 	    ptr.AppendFormatList( aFmt, list );
 	
 	    RDebug::RawPrint( ptr );