1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/cgi.rb (CGI::QueryExtension::read_multipart): use == instead

of ===.  [ruby-dev:30176]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-01-23 09:27:57 +00:00
parent b696420526
commit cd8e10d609
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Jan 23 18:26:12 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/cgi.rb (CGI::QueryExtension::read_multipart): use == instead
of ===. [ruby-dev:30176]
Tue Jan 23 15:39:25 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* Makefile.in, common.mk, configure.in, */{Makefile.sub, configure.bat,

View file

@ -1061,7 +1061,7 @@ class CGI
params[name] = [body]
end
break if buf.size == 0
break if content_length === -1
break if content_length == -1
end
raise EOFError, "bad boundary end of body part" unless boundary_end=~/--/