Browse Source

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

Ryan C. Gordon 24 years ago
parent
commit
ae140141fc
1 changed files with 2 additions and 0 deletions
  1. 2 0
      archivers/dir.c

+ 2 - 0
archivers/dir.c

@@ -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 */