diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-05 21:55:01 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-05 21:55:01 -0400 |
commit | 0c71340c9fecfad17d2619dfa44cb669023f8179 (patch) | |
tree | 1c936b6ffb2361a15a4e71fba2ffed5ce1226b73 /scripts/xmppdaemon.php | |
parent | 9e8ae6a1e79c51baeca1063810ad96dadeab714d (diff) |
free and unset DB_DataObjects after we're done with them
darcs-hash:20080906015501-84dde-e787962b9805759224389dd42a211dfa21da3473.gz
Diffstat (limited to 'scripts/xmppdaemon.php')
-rwxr-xr-x | scripts/xmppdaemon.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/xmppdaemon.php b/scripts/xmppdaemon.php index c5a53e457..e067fdcdb 100755 --- a/scripts/xmppdaemon.php +++ b/scripts/xmppdaemon.php @@ -145,6 +145,9 @@ class XMPPDaemon extends Daemon { } $this->add_notice($user, $pl); } + + $user->free(); + unset($user); } function is_self($from) { @@ -281,6 +284,8 @@ class XMPPDaemon extends Daemon { common_broadcast_notice($notice); $this->log(LOG_INFO, 'Added notice ' . $notice->id . ' from user ' . $user->nickname); + $notice->free(); + unset($notice); } function handle_presence(&$pl) { @@ -310,6 +315,8 @@ class XMPPDaemon extends Daemon { ' status from presence.'); $this->add_notice($user, $pl); } + $user->free(); + unset($user); } break; } |