Hi ironpython,

Here's your Daily Digest of new issues for project "IronPython".

In today's digest:ISSUES

1. [New issue] Bug in ZipArchiveFile Read(ZipArchive archive)

----------------------------------------------

ISSUES

1. [New issue] Bug in ZipArchiveFile Read(ZipArchive archive)
http://ironpython.codeplex.com/workitem/34675
User gcompagnon has proposed the issue:

"The ExtraField Length is not managed in the Main source code
So the 1rst entry is well read but not the following

you can patch 
http://ironpython.codeplex.com/SourceControl/latest#IronPython_Main/Hosts/Silverlight/Chiron/Zip.cs

the method:
internal static ZipArchiveFile Read(ZipArchive archive) 
with 
        //extra field
        byte[] extraFieldBuffer = new byte[extraFieldLength];
        int extraFieldCount = reader.Read(extraFieldBuffer, 0, 
extraFieldLength);
        string extrafield = 
Encoding.UTF8.GetString(extraFieldBuffer).Replace('/', 
Path.DirectorySeparatorChar);
"
----------------------------------------------



----------------------------------------------
You are receiving this email because you subscribed to notifications on 
CodePlex.

To report a bug, request a feature, or add a comment, visit IronPython Issue 
Tracker. You can unsubscribe or change your issue notification settings on 
CodePlex.com.
_______________________________________________
Ironpython-users mailing list
Ironpython-users@python.org
https://mail.python.org/mailman/listinfo/ironpython-users

Reply via email to