[Help]Client crash stringlength

10/03/2016 12:43 banktakung#1
Log.txt

PHP Code:
0023:00944B30 Neuz.exestd::`dynamic atexit destructor for 'initlocks''()+1205930 byte(s)
0023:004518B0 Neuz.exe, CWndStatus::MakeGaugeVertex()+1040 byte(s)
0023:007E8D77 Neuz.exe, FLLogFacade::FLLog::~FLLog()+0023 byte(s)
0023:0044E6B3 Neuz.exe, CWndQueryEquip::OnInitialUpdate()+0499 byte(s)
0023:007E8D77 Neuz.exe, FLLogFacade::FLLog::~FLLog()+0023 byte(s) 


Here is debug

PHP Code:
    static int __cdecl StringLength( const charpsz ) throw()
    {
        if( 
psz == NULL )
        {
            return( 
);
        }
        return( 
intstrlenpsz ) ) ); <-------- This line
    
}
    static 
int __cdecl StringLength( const wchar_tpsz ) throw()
    {
        if( 
psz == NULL )
        {
            return( 
);
        }
        return( 
intwcslenpsz ) ) );
    } 

i never have this problem before. anyone can solve this ?

:handsdown::handsdown::handsdown:
10/03/2016 14:23 Sedrika#2
CWndQueryEquip::OnInitialUpdate()
10/04/2016 11:37 banktakung#3
is it a character name string ??
10/04/2016 13:23 Sedrika#4
This or that => CWndStatus::MakeGaugeVertex()

Have a look where these functions are called and check the inputs for strings.