[#74190] [Ruby trunk Feature#12134] Comparison between `true` and `false` — duerst@...
Issue #12134 has been updated by Martin D端rst.
3 messages
2016/03/07
[#74269] Type systems for Ruby — Rob Blanco <ml@...>
Dear ruby-core,
5 messages
2016/03/10
[#74395] [Ruby trunk Feature#12142] Hash tables with open addressing — shyouhei@...
Issue #12142 has been updated by Shyouhei Urabe.
3 messages
2016/03/17
[ruby-core:74643] [Ruby trunk Bug#10738] Parsing invalid URI results in undefined method `split' for nil:NilClass (NoMethodError)
From:
nagachika00@...
Date:
2016-03-28 17:23:58 UTC
List:
ruby-core #74643
Issue #10738 has been updated by Tomoyuki Chikanaga.
Backport changed from 2.0.0: UNKNOWN, 2.1: DONTNEED, 2.2: REQUIRED to 2.0.0: UNKNOWN, 2.1: DONTNEED, 2.2: DONE
Backported into `ruby_2_2` branch at r54341.
----------------------------------------
Bug #10738: Parsing invalid URI results in undefined method `split' for nil:NilClass (NoMethodError)
https://bugs.ruby-lang.org/issues/10738#change-57770
* Author: Martin D端rst
* Status: Closed
* Priority: Normal
* Assignee:
* ruby -v: ruby 2.3.0dev (2015-01-12 trunk 49226) [x86_64-cygwin]
* Backport: 2.0.0: UNKNOWN, 2.1: DONTNEED, 2.2: DONE
----------------------------------------
I tried to parse an invalid URI with the URI library. I expected an error such as URI::InvalidComponentError or URI::InvalidComponentError, but I got "undefined method `split' for nil:NilClass (NoMethodError)".
The simplest way to check this is as follows:
ruby -ruri -e 'URI "mailto:/example.com/"'
which produces
/usr/local/lib/ruby/2.3.0/uri/mailto.rb:138:in `initialize': undefined method `split' for nil:NilClass (NoMethodError)
from /usr/local/lib/ruby/2.3.0/uri/rfc3986_parser.rb:75:in `new'
from /usr/local/lib/ruby/2.3.0/uri/rfc3986_parser.rb:75:in `parse'
from /usr/local/lib/ruby/2.3.0/uri/common.rb:226:in `parse'
from /usr/local/lib/ruby/2.3.0/uri/common.rb:713:in `URI'
from -e:1:in `<main>'
I have some ideas for how to fix this, e.g. add
raise InvalidComponentError if @opaque.nil?
before the offending line (/lib/uri/mailto.rb:138), and will go forward and add such a fix unless I hear some advice to the contrary.
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>