aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2011-06-02 15:28:41 +0100
committerMatthew Wild <mwild1@gmail.com>2011-06-02 15:28:41 +0100
commit2af249914131117fa545e8e0cf469ca57d687588 (patch)
treef1f7e71f8e6c2be0ce3b8d49bf4d06f0b92b4f18 /util
parentb863e05f3535fdd9b73491412c3fcb50830c46c5 (diff)
parent0193bc555b8c9c4751311967e7ec951641818c65 (diff)
downloadprosody-2af249914131117fa545e8e0cf469ca57d687588.tar.gz
prosody-2af249914131117fa545e8e0cf469ca57d687588.zip
Merge 0.8->trunk
Diffstat (limited to 'util')
-rw-r--r--util/xmppstream.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/util/xmppstream.lua b/util/xmppstream.lua
index cf485dac..70420424 100644
--- a/util/xmppstream.lua
+++ b/util/xmppstream.lua
@@ -167,9 +167,12 @@ function new_sax_handlers(session, stream_callbacks)
stack = {};
end
end
-
- local function restricted_handler()
+
+ local function restricted_handler(parser)
cb_error(session, "parse-error", "restricted-xml", "Restricted XML, see RFC 6120 section 11.1.");
+ if not parser:stop() then
+ error("Failed to abort parsing");
+ end
end
if lxp_supports_doctype then