diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-25 08:16:16 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-25 08:16:16 +0000 |
commit | d8322d404fc92eaf0c0b64b1099282bc1f0195cd (patch) | |
tree | c8aae098e83fce43b952d7c6b6eda4598c8cfd70 | |
parent | 47679bcf0aea586af1aa3a8bee0c6356c2993f5a (diff) |
* lib/webrick/httputils.rb (WEBrick::HTTPUtils.parse_query): should
discard if key=val pair is empty. patch from Gary Wright.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/webrick/httputils.rb | 1 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sat Jun 25 17:15:23 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * lib/webrick/httputils.rb (WEBrick::HTTPUtils.parse_query): should + discard if key=val pair is empty. patch from Gary Wright. + Sat Jun 25 15:49:18 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> * enum.c (enum_min, enum_max): do not ignore nil as the first element. @@ -73,7 +78,7 @@ Mon Jun 20 01:26:49 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> * ext/openssl/openssl_missing.c, ext/openssl/ossl.h, ext/openssl/ossl_asn1.c, ext/openssl/ossl_bio.c, ext/openssl/ossl_pkcs12.h, ext/openssl/ossl_x509req.c: avoid - compiler warnings. suggested by Mical Rokos. + compiler warnings. suggested by Michal Rokos. Sun Jun 19 14:09:07 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> diff --git a/lib/webrick/httputils.rb b/lib/webrick/httputils.rb index 67bc281c5d..c57af2c860 100644 --- a/lib/webrick/httputils.rb +++ b/lib/webrick/httputils.rb @@ -294,6 +294,7 @@ module WEBrick query = Hash.new if str str.split(/[&;]/).each{|x| + next if x.empty? key, val = x.split(/=/,2) key = unescape_form(key) val = unescape_form(val.to_s) |