This commit is contained in:
twinaphex 2016-01-24 22:06:01 +01:00
parent 6878aa0844
commit 44ec82362e
1 changed files with 3 additions and 3 deletions

View File

@ -481,11 +481,11 @@ int file_archive_parse_file_iterate(
break;
case ZLIB_TRANSFER_ITERATE:
{
int ret2 = file_archive_parse_file_iterate_step(state,
int ret = file_archive_parse_file_iterate_step(state,
valid_exts, userdata, file_cb);
if (ret2 != 1)
if (ret != 1)
state->type = ZLIB_TRANSFER_DEINIT;
if (ret2 == -1)
if (ret == -1)
state->type = ZLIB_TRANSFER_DEINIT_ERROR;
}
break;