Selaa lähdekoodia

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

Ryan C. Gordon 24 vuotta sitten
vanhempi
commit
ae140141fc
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  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 */