Skip to content

Commit

Permalink
Added some FIXMEs.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed May 10, 2009
1 parent 00fb227 commit 2cfd40d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions archive_tar.c
Expand Up @@ -51,7 +51,7 @@ static void initializeZStream(z_stream *pstr)

static boolean MojoInput_gzip_ready(MojoInput *io)
{
return true;
return true; // !!! FIXME: ready if there are bytes uncompressed.
} // MojoInput_gzip_ready

static boolean MojoInput_gzip_seek(MojoInput *io, uint64 offset)
Expand Down Expand Up @@ -252,7 +252,7 @@ static void initializeBZ2Stream(bz_stream *pstr)

static boolean MojoInput_bzip2_ready(MojoInput *io)
{
return true;
return true; // !!! FIXME: ready if there are bytes uncompressed.
} // MojoInput_bzip2_ready

static boolean MojoInput_bzip2_seek(MojoInput *io, uint64 offset)
Expand Down Expand Up @@ -451,7 +451,7 @@ typedef struct TARinfo

static boolean MojoInput_tar_ready(MojoInput *io)
{
return true;
return true; // !!! FIXME: ready if there are bytes uncompressed.
} // MojoInput_tar_ready

static int64 MojoInput_tar_read(MojoInput *io, void *buf, uint32 bufsize)
Expand Down
2 changes: 1 addition & 1 deletion archive_zip.c
Expand Up @@ -1685,7 +1685,7 @@ const PHYSFS_Archiver __PHYSFS_Archiver_ZIP =

static boolean MojoInput_zip_ready(MojoInput *io)
{
return true;
return true; // !!! FIXME: ready if there are bytes uncompressed.
} // MojoInput_zip_ready

static int64 MojoInput_zip_read(MojoInput *io, void *buf, uint32 bufsize)
Expand Down

0 comments on commit 2cfd40d

Please sign in to comment.