Fixed: modulemanager: IQs with extended elements in the default namespace could cause backtraces (related to issue #74)

Mon, 30 Mar 2009 02:56:34 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Mon, 30 Mar 2009 02:56:34 +0500
changeset 929
b4f2ca7f6f00
parent 928
92288c13d7bc
child 930
fed53329818d

Fixed: modulemanager: IQs with extended elements in the default namespace could cause backtraces (related to issue #74)

core/modulemanager.lua file | annotate | diff | comparison | revisions
--- a/core/modulemanager.lua	Mon Mar 30 02:38:51 2009 +0500
+++ b/core/modulemanager.lua	Mon Mar 30 02:56:34 2009 +0500
@@ -204,7 +204,7 @@
 	local name, xmlns, origin_type = stanza.name, stanza.attr.xmlns, origin.type;
 	if name == "iq" and xmlns == "jabber:client" then
 		if stanza.attr.type == "get" or stanza.attr.type == "set" then
-			xmlns = stanza.tags[1].attr.xmlns;
+			xmlns = stanza.tags[1].attr.xmlns or "jabber:client";
 			log("debug", "Stanza of type %s from %s has xmlns: %s", name, origin_type, xmlns);
 		else
 			log("debug", "Discarding %s from %s of type: %s", name, origin_type, stanza.attr.type);

mercurial