Skip to content

Commit

Permalink
Added some TODOs to the ISO9660 code.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 22, 2017
1 parent 6ed2bf1 commit eefc757
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/archiver_iso9660.c
Expand Up @@ -14,6 +14,7 @@
* Not supported:
* - Rock Ridge (needed for sparse files, device nodes and symlinks, etc).
* - Non 2048 Sectors
* - TRANS.TBL (maps 8.3 filenames on old discs to long filenames).
* - Multiextents (4gb max file size without it).
* - UDF
*
Expand Down Expand Up @@ -87,6 +88,8 @@ static int iso9660AddEntry(PHYSFS_Io *io, const int joliet, const int isdir,
} /* if */
else
{
/* !!! FIXME: we assume the filenames are low-ASCII; if they use
any high-ASCII chars, they will be invalid UTF-8. */
memcpy(fnamecpy, fname, fnamelen);
fnamecpy[fnamelen] = '\0';
if (!isdir)
Expand Down

0 comments on commit eefc757

Please sign in to comment.