From 584119a4a0ce87e254b161252d3cd538c9619427 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 20 Mar 2012 15:44:10 -0400 Subject: [PATCH] Removed a FIXME. --- src/archiver_dir.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/archiver_dir.c b/src/archiver_dir.c index cde1e2b..045c48c 100644 --- a/src/archiver_dir.c +++ b/src/archiver_dir.c @@ -47,9 +47,6 @@ static void *DIR_openArchive(PHYSFS_Io *io, const char *name, int forWriting) assert(io == NULL); /* shouldn't create an Io for these. */ BAIL_IF_MACRO(!__PHYSFS_platformStat(name, &exists, &st), ERRPASS, NULL); - /* !!! FIXME: the failed Stat() call will BAIL before we check (exists) */ - /* !!! FIXME: ...should we even be checking for existance here...? */ - BAIL_IF_MACRO(!exists, PHYSFS_ERR_NO_SUCH_PATH, NULL); if (st.filetype != PHYSFS_FILETYPE_DIRECTORY) BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, NULL);