Fixed compiler warnings.

This commit is contained in:
Ryan C. Gordon 2017-07-21 22:38:50 -04:00
parent a7616f3960
commit 8ee7f5d351
1 changed files with 2 additions and 1 deletions

View File

@ -314,7 +314,8 @@ static int parseVolumeDescriptor(PHYSFS_Io *io, PHYSFS_uint64 *_rootpos,
static void *ISO9660_openArchive(PHYSFS_Io *io, const char *filename, int forWriting)
{
PHYSFS_uint64 rootpos, len;
PHYSFS_uint64 rootpos = 0;
PHYSFS_uint64 len = 0;
int joliet = 0;
void *unpkarc = NULL;