Click here to Skip to main content
15,900,108 members

Comments by ribash1816 (Top 1 by date)

ribash1816 19-Sep-19 12:34pm View    
tracing the error through breakpoint, the function strlen is called in another file "atlsimpstr.h" :

static int __cdecl StringLength(__in_z_opt const char* psz) throw()
{
if(psz == NULL){
return( 0 );
}
return (int(strlen(psz)));
}