The DirHandle->funcs pointer wasn't getting set?!

This commit is contained in:
Ryan C. Gordon 2001-10-09 15:34:10 +00:00
parent 3fdf86c573
commit ae140141fc
1 changed files with 2 additions and 0 deletions

View File

@ -209,6 +209,8 @@ static DirHandle *DIR_openArchive(const char *name, int forWriting)
if (strcmp((name + namelen) - seplen, dirsep) != 0)
strcat((char *) (retval->opaque), dirsep);
retval->funcs = &__PHYSFS_DirFunctions_DIR;
return(retval);
} /* DIR_openArchive */