Skip to content

Commit

Permalink
[System.IO.Compression.FileSystem] Fix infinite loop in ZipFile.Open(…
Browse files Browse the repository at this point in the history
…string,ZipArchiveMode)
  • Loading branch information
migueldeicaza committed Dec 24, 2014
1 parent 074873a commit 649f91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcs/class/System.IO.Compression.FileSystem/ZipFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public static void ExtractToDirectory (
public static ZipArchive Open (
string archiveFileName, ZipArchiveMode mode)
{
return Open (archiveFileName, mode);
return Open (archiveFileName, mode, entryNameEncoding: null);
}

public static ZipArchive Open (
Expand Down

0 comments on commit 649f91f

Please sign in to comment.