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
In several places a temporary file on disk is used to parse a zip file and extract files. It should all be done in memory to avoid issues with temp files.
(search for "unzip", "/tmp", "tempfile", ...)
Issues due to temp files on disk:
exceptions on Windows when trying to delete temp file without closing the zipfile first
if there is an antivirus running, it can detect and delete temp files before we process them
The text was updated successfully, but these errors were encountered:
In several places a temporary file on disk is used to parse a zip file and extract files. It should all be done in memory to avoid issues with temp files.
(search for "unzip", "/tmp", "tempfile", ...)
Issues due to temp files on disk:
The text was updated successfully, but these errors were encountered: