Update of /cvsroot/bitcollider/bitcollider/lib
In directory usw-pr-cvs1:/tmp/cvs-serv29769
Modified Files:
dirsearch.c
Log Message:
Finished fixing the bug from Scott Hernandez where the bitcollider was
crashing on compressed directories.
Index: dirsearch.c
===================================================================
RCS file: /cvsroot/bitcollider/bitcollider/lib/dirsearch.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** dirsearch.c 2001/06/16 03:17:51 1.3
--- dirsearch.c 2001/06/16 03:28:43 1.4
***************
*** 154,158 ****
/* If its not a directory, then remove everything after the last slash */
! if ((GetFileAttributes(savedPath) & FILE_ATTRIBUTE_DIRECTORY) != 0)
{
char *ptr;
--- 154,158 ----
/* If its not a directory, then remove everything after the last slash */
! if ((GetFileAttributes(savedPath) & FILE_ATTRIBUTE_DIRECTORY) == 0)
{
char *ptr;
|