diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-10-24 19:04:51 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-10-24 19:04:51 +0100 |
commit | ffd784e8331b3b62a8e74c36c6890f4e893b50c0 (patch) | |
tree | b23a65746327cae09bdb3e07feb36c05e70d4baa /net | |
parent | 20f24311a4d5129f11267c90961e5c657e4898d0 (diff) | |
download | prosody-ffd784e8331b3b62a8e74c36c6890f4e893b50c0.tar.gz prosody-ffd784e8331b3b62a8e74c36c6890f4e893b50c0.zip |
Backed out changeset 4adc53e03b4d (garbage collection)
Diffstat (limited to 'net')
-rw-r--r-- | net/xmppclient_listener.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/xmppclient_listener.lua b/net/xmppclient_listener.lua index 542dcd35..068557c8 100644 --- a/net/xmppclient_listener.lua +++ b/net/xmppclient_listener.lua @@ -60,7 +60,7 @@ function xmppclient.listener(conn, data) -- TODO: Below function should be session,stanza - and xmlhandlers should use :method() notation to call, -- this will avoid the useless indirection we have atm -- (I'm on a mission, no time to fix now) - session.stanza_dispatch = function (stanza) collectgarbage("collect"); collectgarbage("collect"); return core_process_stanza(session, stanza); end + session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end end if data then |