Hello,

I am migrating a software writen with VC++ 6.0 to VS 2010/VC++2010. and I have a project which does not compile in Debug mode. I have:

Code:
LBSC_AppUserInfoList *			
LBSC_Session::GetUsersInfo( const LBSC_Ticket *pTicket )
{
	TSROut_GetUsersInfo	sOut;
	C_Buffer			*pcbRet = NULL;
	TSRIn_TicketPar		InPar;
//...
	ClntFree( (void *)sOut.szBuffer );  // dealoca o que veio do RPC

	return( pList );
} // C2712 - Cannot use __try in functions that require object unwinding
and I haven´t any mention to __try

do you undestand?