[Issue 9505] std.zlib seem to be bugged

2017-10-16 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9505 --- Comment #12 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/dlang/phobos https://github.com/dlang/phobos/commit/5cf20bd8773e0f746c74b19137a03d699cdfe28b Fixed issues 3191 and 9505

[Issue 9505] std.zlib seem to be bugged

2017-09-14 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9505 github-bugzi...@puremagic.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 9505] std.zlib seem to be bugged

2017-09-14 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9505 --- Comment #11 from github-bugzi...@puremagic.com --- Commits pushed to master at https://github.com/dlang/phobos https://github.com/dlang/phobos/commit/5cf20bd8773e0f746c74b19137a03d699cdfe28b Fixed issues 3191 and 9505

[Issue 9505] std.zlib seem to be bugged

2016-02-12 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9505 Andre changed: What|Removed |Added CC||alver...@gmail.com --

[Issue 9505] std.zlib seem to be bugged

2013-02-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 --- Comment #10 from bioinfornatics bioinfornat...@gmail.com 2013-02-19 07:25:50 PST --- update uncompress function add zlibException any comments? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You

[Issue 9505] std.zlib seem to be bugged

2013-02-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 --- Comment #9 from bioinfornatics bioinfornat...@gmail.com 2013-02-15 06:37:25 PST --- I updated the code http://dpaste.dzfl.pl/683c053b just add compress uncompress from the old code but fit with d2 way -- Configure issuemail:

[Issue 9505] std.zlib seem to be bugged

2013-02-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 --- Comment #6 from bioinfornatics bioinfornat...@gmail.com 2013-02-14 03:36:31 PST --- I added some enhancement http://dpaste.dzfl.pl/683c053b -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are

[Issue 9505] std.zlib seem to be bugged

2013-02-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 Artem Tarasov lomerei...@gmail.com changed: What|Removed |Added CC|

[Issue 9505] std.zlib seem to be bugged

2013-02-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 --- Comment #8 from bioinfornatics bioinfornat...@gmail.com 2013-02-14 09:49:19 PST --- (In reply to comment #7) I guess that's because you are using winbits=15 instead of -15. BAM files contain GZIP blocks with custom headers, so processing

[Issue 9505] std.zlib seem to be bugged

2013-02-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 --- Comment #1 from bioinfornatics bioinfornat...@gmail.com 2013-02-13 07:15:41 PST --- i create a little code using etc.c.zlib to be able to use gzipped as a phobos range: http://dpaste.dzfl.pl/5b8db0a2 I would like your opinion on this

[Issue 9505] std.zlib seem to be bugged

2013-02-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 --- Comment #2 from bioinfornatics bioinfornat...@gmail.com 2013-02-13 07:55:27 PST --- to fit more with std.stdio http://dpaste.dzfl.pl/683c053b I add a: - ZFile - rawRead method into ZFile - byZChunk use ZFile / ZFile.rawRead -- Configure

[Issue 9505] std.zlib seem to be bugged

2013-02-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 monarchdo...@gmail.com changed: What|Removed |Added CC||monarchdo...@gmail.com ---

[Issue 9505] std.zlib seem to be bugged

2013-02-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 --- Comment #4 from monarchdo...@gmail.com 2013-02-13 09:41:39 PST --- Oh yeah, also, gzread will return -1 in case of an io error. you don't check for that. You'd probably want to use: _numberRead = gzread( _file, _buffer.ptr,

[Issue 9505] std.zlib seem to be bugged

2013-02-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9505 --- Comment #5 from bioinfornatics bioinfornat...@gmail.com 2013-02-13 10:34:22 PST --- thanks for your much appropriated comment :-) I will try to enhance this. That was a snippet code to be able to read gz file in D as std.zlib and std.zip