Command line option '-in_cfg-' isn't work.
example :
gc -file-main.c -in_cfg-mytest.cfg
gz_CfgFileName in config.c is char*, but strcpy() is used to
direct copying without allocation.
Maybe _strdup() is needed.
- strcpy(gz_CfgFileName, ptest);
+ gz_CfgFileName = _strdup(ptest);