Imported Upstream version 4.4.1.0

Former-commit-id: 83cefab0c44461cb78f9e4aa51ca6235525b0df6
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-06-22 10:54:06 +00:00
parent 180e8b1935
commit 589d484eee
28 changed files with 48 additions and 50 deletions

View File

@ -22,7 +22,7 @@ namespace SharpCompress.Writer.Zip
byte[] encodedFilename = Encoding.UTF8.GetBytes(FileName);
byte[] encodedComment = Encoding.UTF8.GetBytes(Comment);
outputStream.Write(new byte[] {80, 75, 1, 2, 0x14, 0, 0x0A, 0}, 0, 8);
outputStream.Write(new byte[] {80, 75, 1, 2, 0x14, 0, 0x14, 0}, 0, 8);
HeaderFlags flags = HeaderFlags.UTF8;
if (!outputStream.CanSeek)
{