From eedfaa7d1a8e0f97175dfb832091250ca2e1f851 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 3 Jul 2009 23:34:28 -0400 Subject: clean up payload memory --- scripts/xmppdaemon.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'scripts/xmppdaemon.php') diff --git a/scripts/xmppdaemon.php b/scripts/xmppdaemon.php index ca6218120..bd1918ca9 100755 --- a/scripts/xmppdaemon.php +++ b/scripts/xmppdaemon.php @@ -116,6 +116,11 @@ class XMPPDaemon extends Daemon $this->conn->processUntil('session_start'); $this->log(LOG_DEBUG, "Sending reconnection presence."); $this->conn->presence('Send me a message to post a notice', 'available', null, 'available', 100); + unset($pl['xml']); + $pl['xml'] = null; + + $pl = null; + unset($pl); } function get_user($from) @@ -189,6 +194,12 @@ class XMPPDaemon extends Daemon $user->free(); unset($user); + + unset($pl['xml']); + $pl['xml'] = null; + + $pl = null; + unset($pl); } function is_self($from) @@ -334,6 +345,11 @@ class XMPPDaemon extends Daemon } break; } + unset($pl['xml']); + $pl['xml'] = null; + + $pl = null; + unset($pl); } function log($level, $msg) -- cgit v1.2.3-54-g00ecf