simply call GC -file-*.h without having *.h files in current Dir
You'll get 0xc000000d Exception at 0x00412dfd
Logged In: YES user_id=990523
I have a patch against version 1.140 that should fix this problem. Hopefully it doesn't get reformatted and broken. Is there a way to attach files when I reply?
Here is the patch:
--- in.c 2005-07-19 08:13:00.000000000 -0700 +++ in.c 2006-10-09 13:41:03.914707000 -0700 @@ -135,6 +135,7 @@ if(!strrchr(pdes->psz_FileName, '*')) return MOpenFile(_i_Num); h = _findfirst(pdes->psz_FileName, &t); if(!h) return 0; + if(h == -1) return 2; do { if(gi_NumFiles == 1000) Fatal("Too many input files", 0);
Logged In: YES
user_id=990523
I have a patch against version 1.140 that should fix this
problem. Hopefully it doesn't get reformatted and broken.
Is there a way to attach files when I reply?
Here is the patch:
--- in.c 2005-07-19 08:13:00.000000000 -0700
+++ in.c 2006-10-09 13:41:03.914707000 -0700
@@ -135,6 +135,7 @@
if(!strrchr(pdes->psz_FileName, '*')) return
MOpenFile(_i_Num);
h = _findfirst(pdes->psz_FileName, &t);
if(!h) return 0;
+ if(h == -1) return 2;
do
{
if(gi_NumFiles == 1000) Fatal("Too many input files", 0);