userlibandfileserver/fileserver/etshell/ts_edshl.cpp
changeset 6 0173bcd7697c
parent 0 a41df078684a
child 42 a179b74831c9
equal deleted inserted replaced
4:56f325a607ea 6:0173bcd7697c
  1226 	//create an object to truncate argument list substitution 
  1226 	//create an object to truncate argument list substitution 
  1227 	SimpleOverflowTruncate overflow;	
  1227 	SimpleOverflowTruncate overflow;	
  1228 	VA_LIST list;
  1228 	VA_LIST list;
  1229 	VA_START(list,aFmt);
  1229 	VA_START(list,aFmt);
  1230 	
  1230 	
  1231 	TBuf<0x140> aBuf;
  1231 	TBuf<0x200> aBuf;
  1232 	//format output string using argument list
  1232 	//format output string using argument list
  1233 	
  1233 	
  1234 	//coverity[uninit_use_in_call]
  1234 	//coverity[uninit_use_in_call]
  1235 	TRAP_IGNORE(aBuf.AppendFormatList(aFmt,list,&overflow)); // ignore leave in TTimeOverflowLeave::Overflow()
  1235 	TRAP_IGNORE(aBuf.AppendFormatList(aFmt,list,&overflow)); // ignore leave in TTimeOverflowLeave::Overflow()
  1236 	
  1236 	
  1250 	SimpleOverflowTruncate overflow;
  1250 	SimpleOverflowTruncate overflow;
  1251 	
  1251 	
  1252 	VA_LIST list;
  1252 	VA_LIST list;
  1253 	VA_START(list,aFmt);
  1253 	VA_START(list,aFmt);
  1254 	
  1254 	
  1255 	TBuf<0x140> aBuf;
  1255 	TBuf<0x200> aBuf;
  1256 	//format output string using argumen list
  1256 	//format output string using argumen list
  1257 	
  1257 	
  1258 	//coverity[uninit_use_in_call]
  1258 	//coverity[uninit_use_in_call]
  1259 	TRAP_IGNORE(aBuf.AppendFormatList(aFmt,list,&overflow)); // ignore leave in TTimeOverflowLeave::Overflow()
  1259 	TRAP_IGNORE(aBuf.AppendFormatList(aFmt,list,&overflow)); // ignore leave in TTimeOverflowLeave::Overflow()
  1260 	//if we are requested to wait for the user input at the end of each page, we check whether output of next piece of text will fit into the screen
  1260 	//if we are requested to wait for the user input at the end of each page, we check whether output of next piece of text will fit into the screen