/***
* __chvalidator
*
* Purpose:
* This function is called by character testing functions in debug
* versions. This function test for validation of c as character.
* For improvement in performance, it is not used in non-debug
* version. It is available in the static single-thread non-debug
* build, though, just in case C code that includes ctype.h is compiled
* /D_DEBUG /ML.
*
*******************************************************************************/
It looks like you are building debug version :icon_eek:
in main.c line 124
try to use instead of:
strcpy( &fname[dirsize], finfo.name );
this:
wcscpy( &fname[dirsize], finfo.name );