diff options
-rw-r--r-- | util/xmppstream.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xmppstream.lua b/util/xmppstream.lua index 69e7690d..ac4d77af 100644 --- a/util/xmppstream.lua +++ b/util/xmppstream.lua @@ -162,7 +162,7 @@ function new_sax_handlers(session, stream_callbacks) 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 + if not parser.stop or not parser:stop() then error("Failed to abort parsing"); end end |