Changeset

4305:e3ffa91517cc

util.xmppstream: Check to make sure parser.stop is present before calling it.
author Waqas Hussain <waqas20@gmail.com>
date Sun, 05 Jun 2011 01:57:43 +0500
parents 4304:73bf8aab8b77
children 4306:a101c59772e7 4308:50e1a3dc2b50
files util/xmppstream.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/util/xmppstream.lua	Sun Jun 05 01:52:48 2011 +0500
+++ b/util/xmppstream.lua	Sun Jun 05 01:57:43 2011 +0500
@@ -162,7 +162,7 @@
 
 	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