You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that zip_close fails, it fails to return from here:
if (_zip_read_local_ef(za, i) < 0) {
error = 1;
break;
}
then return,
if (error) {
zip_source_rollback_write(za->src);
return -1;
}
and I observe that it does not close the zip file, this cause my filesystem handle to leak.
The text was updated successfully, but these errors were encountered:
I see that zip_close fails, it fails to return from here:
if (_zip_read_local_ef(za, i) < 0) {
error = 1;
break;
}
then return,
if (error) {
zip_source_rollback_write(za->src);
return -1;
}
and I observe that it does not close the zip file, this cause my filesystem handle to leak.
The text was updated successfully, but these errors were encountered: