# HG changeset patch
# User Waqas Hussain <waqas20@gmail.com>
# Date 1245502419 -18000
# Node ID 0cb70958b8fb624079ad8da51b0f64e7a76bd51c
# Parent  e4d660e58dfc06fa825399d93e6ccad1f139610b
stanza_router: Fixed a corner case where processing could continue after an error reply

diff -r e4d660e58dfc -r 0cb70958b8fb core/stanza_router.lua
--- a/core/stanza_router.lua	Sat Jun 20 17:51:00 2009 +0500
+++ b/core/stanza_router.lua	Sat Jun 20 17:53:39 2009 +0500
@@ -54,6 +54,7 @@
 					and stanza.tags[1].attr.xmlns == "urn:ietf:params:xml:ns:xmpp-bind") then
 			-- authenticated client isn't bound and current stanza is not a bind request
 			origin.send(st.error_reply(stanza, "auth", "not-authorized")); -- FIXME maybe allow stanzas to account or server
+			return;
 		end
 
 		-- TODO also, stanzas should be returned to their original state before the function ends