* zipvfs.tcl: Fix for Tcl 8.6 not properly streaming large files with
very big compression ratio, bug
3542959
+2012-07-12 Wojciech Kocjan <zoro2@users.sourceforge.net>
+
+ * zipvfs.tcl: Fix for Tcl 8.6 not properly streaming large files with
+ very big compression ratio, bug 3542959
+
2012-07-04 Wojciech Kocjan <zoro2@users.sourceforge.net>
* zipvfs.tcl: Fix for streaming not working properly in certain zip
set data [read $ifd $c]
set tell [tell $ifd]
zstream_put $fd $data
- append buf [zstream_get $fd]
+ while {[string length [set bufdata [zstream_get $fd]]] > 0} {
+ append buf $bufdata
+ }
}
}
return $r