diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-05 21:56:21 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-05 21:56:21 -0400 |
commit | f02b5bf7ddcdffdd45cf9bb1a2eea4a23d12095f (patch) | |
tree | e2093c5f66be2abcd5cf7ddc0797f0f067776025 /lib/mail.php | |
parent | 0c71340c9fecfad17d2619dfa44cb669023f8179 (diff) |
free memory in SMS daemon, too
darcs-hash:20080906015621-84dde-ae1a53e6757a743f82f3078947212b7bbe984dde.gz
Diffstat (limited to 'lib/mail.php')
-rw-r--r-- | lib/mail.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/mail.php b/lib/mail.php index 85b139f9e..162669eaa 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -189,6 +189,9 @@ function mail_broadcast_notice_sms($notice) { } } + $user->free(); + unset($user); + return true; } |