Missing a small mutex lock from commit e9bde2eb

This commit is contained in:
Marc Olivier Chouinard 2011-12-17 12:54:40 -05:00
parent 023818bcc6
commit ec2dce58f8
1 changed files with 1 additions and 1 deletions

View File

@ -3665,7 +3665,7 @@ void sofia_presence_check_subscriptions(sofia_profile_t *profile, time_t now)
sql = switch_mprintf("delete from sip_subscriptions where (expires = -1 or (expires > 0 and expires <= %ld)) and hostname='%q'",
(long) now, mod_sofia_globals.hostname);
sofia_glue_actually_execute_sql(profile, sql, NULL);
sofia_glue_actually_execute_sql(profile, sql, profile->ireg_mutex);
}