[#99115] [Ruby master Bug#17023] How to prevent String memory to be relocated in ruby-ffi — larskanis@...
Issue #17023 has been reported by larskanis (Lars Kanis).
22 messages
2020/07/10
[#99375] [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings — merch-redmine@...
Issue #17055 has been reported by jeremyevans0 (Jeremy Evans).
29 messages
2020/07/28
[#101207] [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings
— merch-redmine@...
2020/12/02
Issue #17055 has been updated by jeremyevans0 (Jeremy Evans).
[#101231] Re: [Ruby master Feature#17055] Allow suppressing uninitialized instance variable and method redefined verbose mode warnings
— Austin Ziegler <halostatue@...>
2020/12/03
What does this mean?
[ruby-core:99267] [Ruby master Bug#9790] Zlib::GzipReader only decompressed the first of concatenated files
From:
merch-redmine@...
Date:
2020-07-22 15:39:01 UTC
List:
ruby-core #99267
Issue #9790 has been updated by jeremyevans0 (Jeremy Evans).
Status changed from Feedback to Closed
matz approved Zlib::GzipReader.zcat, so I merged the pull request into zlib.
----------------------------------------
Bug #9790: Zlib::GzipReader only decompressed the first of concatenated files
https://bugs.ruby-lang.org/issues/9790#change-86654
* Author: quainjn (Jake Quain)
* Status: Closed
* Priority: Normal
* Assignee: drbrain (Eric Hodel)
* ruby -v: 2.1.1
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN
----------------------------------------
There is a similar old issue in Node that I came across that perfectly describes the situation in ruby:
https://github.com/joyent/node/issues/6032
In ruby given the following setup:
```
echo "1" > 1.txt
echo "2" > 2.txt
gzip 1.txt
gzip 2.txt
cat 1.txt.gz 2.txt.gz > 3.txt.gz
```
Calling:
```
Zlib::GzipReader.open("3.txt.gz") do |gz|
print gz.read
end
```
would just print:
```
1
```
---Files--------------------------------
zlib-gzreader-each_file-9790.patch (3.47 KB)
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:[email protected]?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>