Fix for ZIP remerged development
authorvranyj1
Sat, 15 Dec 2012 00:06:40 +0000
branchdevelopment
changeset 1872 60e6afa5d5a9
parent 1871 684663e931e8
child 1873 4b51dd1a0434
Fix for ZIP remerged
extensions.st
--- a/extensions.st	Fri Dec 14 23:55:09 2012 +0000
+++ b/extensions.st	Sat Dec 15 00:06:40 2012 +0000
@@ -2019,10 +2019,11 @@
 
 nextBytes: bytesToRead of: zmember startingAt: pos into: b startingAt: off
 
-    file position0Based: zmember fileStart + startOfArchive + pos.
+    file position0Based: (self dataStartOf: zmember) + startOfArchive + pos.
     ^ file nextBytes: bytesToRead into: b startingAt: off.
 
     "Created: / 01-05-2011 / 16:21:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 10-12-2012 / 05:41:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !stx_libjava class methodsFor:'documentation'!