aboutsummaryrefslogtreecommitdiffstats
path: root/net/http/parser.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-03-10 11:29:47 +0000
committerMatthew Wild <mwild1@gmail.com>2013-03-10 11:29:47 +0000
commit05cd95bf80167c87312b04107a3f2abc25e83094 (patch)
tree479c845b81a7d47465c3223177a7119dbe3dd7ba /net/http/parser.lua
parent4c01dc18780c4b0b93616093c86b2c9cff3d12f2 (diff)
parente39fde236178e9d41cf0b1f56aae0aad382df96b (diff)
downloadprosody-05cd95bf80167c87312b04107a3f2abc25e83094.tar.gz
prosody-05cd95bf80167c87312b04107a3f2abc25e83094.zip
Merge 0.9->trunk
Diffstat (limited to 'net/http/parser.lua')
-rw-r--r--net/http/parser.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua
index 64cf38c0..2545b5ac 100644
--- a/net/http/parser.lua
+++ b/net/http/parser.lua
@@ -99,6 +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 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;