malware icon indicating copy to clipboard operation
malware copied to clipboard

cstrlenW

Open realsec opened this issue 7 years ago • 0 comments

in main file cstrlenW is defined as so: #define cstrlenW(str) (sizeof(str)-1)/sizeof(WCHAR)

i gess it should be defined instead as so: #define cstrlenW(str) ((sizeof(str)/sizeof(WCHAR))-1)

realsec avatar Dec 18 '17 04:12 realsec