Skip to content

Commit

Permalink
Merged changeset 1084:ee3d2e6e1161 from stable-2.0: unitialized array…
Browse files Browse the repository at this point in the history
… fix.
  • Loading branch information
icculus committed Mar 25, 2010
1 parent a44e966 commit a985594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/archiver_zip.c
Expand Up @@ -373,7 +373,7 @@ static int ZIP_fileClose(fvoid *opaque)
static PHYSFS_sint64 zip_find_end_of_central_dir(void *in, PHYSFS_sint64 *len)
{
PHYSFS_uint8 buf[256];
PHYSFS_uint8 extra[4];
PHYSFS_uint8 extra[4] = { 0, 0, 0, 0 };
PHYSFS_sint32 i = 0;
PHYSFS_sint64 filelen;
PHYSFS_sint64 filepos;
Expand Down

0 comments on commit a985594

Please sign in to comment.