diff options
author | Waqas Hussain <waqas20@gmail.com> | 2013-02-08 00:27:59 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2013-02-08 00:27:59 +0500 |
commit | 49a6c240739e97e0ffe59cabefb481c5225959bf (patch) | |
tree | c7fab4bc61fcd2ffd08a4f6679870367d0e75b5b /net/http/parser.lua | |
parent | 8e10516c29598fac76181c338e878cc5de7258aa (diff) | |
download | prosody-49a6c240739e97e0ffe59cabefb481c5225959bf.tar.gz prosody-49a6c240739e97e0ffe59cabefb481c5225959bf.zip |
net.http.parser: Ensure full URL in status line contains a path.
Diffstat (limited to 'net/http/parser.lua')
-rw-r--r-- | net/http/parser.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua index 9fd707d1..2545b5ac 100644 --- a/net/http/parser.lua +++ b/net/http/parser.lua @@ -99,7 +99,7 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb) parsed_url = { path = _path, query = _query }; else parsed_url = url_parse(path); - if not parsed_url then error = true; return error_cb("invalid-url"); end + if not(parsed_url and parsed_url.path) then error = true; return error_cb("invalid-url"); end end path = preprocess_path(parsed_url.path); headers.host = parsed_url.host or headers.host; |