Module: sip-router Branch: master Commit: a4370dc336e5552b93d32314249d4d613d77ef99 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a4370dc3...
Author: Jason Penton jason.penton@smilecoms.com Committer: Jason Penton jason.penton@smilecoms.com Date: Mon Oct 7 12:49:00 2013 +0200
modules/tm: missing lock initialisation for async_lock - related to commit 5ab44c7c2fc78038302bf455ff49e374fc79550b
---
modules/tm/h_table.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/modules/tm/h_table.c b/modules/tm/h_table.c index 92e8ba8..26ca3e3 100644 --- a/modules/tm/h_table.c +++ b/modules/tm/h_table.c @@ -380,6 +380,7 @@ struct cell* build_cell( struct sip_msg* p_msg )
init_synonym_id(new_cell); init_cell_lock( new_cell ); + init_async_lock( new_cell ); t_stats_created(); return new_cell;