-
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: reserve paths case-insensitively
The path reservation system prevents multiple file entries clobbering one another while in flight, while allowing maximal parallelization in unpacking otherwise. However, on case-insensitive file systems, this can still introduce a race condition if the entries in the archive have different cases, as capital and lowercase entries will not be treated as reserving the same path. Normalize slashes and cases immediately when reserving paths, such that paths which differ only in case or slash repetition are treated as identical paths.
- Loading branch information
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters