mmappcomponents/mmmtpdataprovider/inc/cmmmtpdpperflog.inl
branchGCC_SURGE
changeset 47 f3d2589f22d6
parent 32 edd273b3192a
equal deleted inserted replaced
36:3b7506f63335 47:f3d2589f22d6
    70     {
    70     {
    71     VA_LIST list;
    71     VA_LIST list;
    72     VA_START( list, aFmt );
    72     VA_START( list, aFmt );
    73 
    73 
    74     HBufC* buf = HBufC::New( KMtpLogBufferSize );
    74     HBufC* buf = HBufC::New( KMtpLogBufferSize );
    75     if ( buf )
    75     if ( buf != NULL )
    76         {
    76         {
    77         buf->Des().AppendFormatList( aFmt, list, &iOverflowHandler );
    77         buf->Des().AppendFormatList( aFmt, list, &iOverflowHandler );
    78         Write( *buf );
    78         Write( *buf );
    79         delete buf;
    79         delete buf;
    80         }
    80         }