mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/cgi.rb (CGI::QueryExtension::read_multipart): CGI content
may be empty. a patch from Jamis Buck <jamis at 37signals.com>. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d5a00279f4
commit
9911bca1e2
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Sat Sep 23 21:34:15 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/cgi.rb (CGI::QueryExtension::read_multipart): CGI content
|
||||||
|
may be empty. a patch from Jamis Buck <jamis at 37signals.com>.
|
||||||
|
|
||||||
Sat Sep 23 20:54:28 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
|
Sat Sep 23 20:54:28 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
|
||||||
|
|
||||||
* oniguruma.h: Version 4.4.4
|
* oniguruma.h: Version 4.4.4
|
||||||
|
|
|
@ -1015,7 +1015,7 @@ class CGI
|
||||||
else
|
else
|
||||||
stdinput.read(content_length)
|
stdinput.read(content_length)
|
||||||
end
|
end
|
||||||
if c.nil?
|
if c.nil? || c.empty?
|
||||||
raise EOFError, "bad content body"
|
raise EOFError, "bad content body"
|
||||||
end
|
end
|
||||||
buf.concat(c)
|
buf.concat(c)
|
||||||
|
|
Loading…
Reference in a new issue