From b2594f9c525868da152772cccc148e0fe90bccd2 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Thu, 23 Jun 2005 17:30:56 +0000 Subject: don't take locks when reading usecounts, they are not necessary (bug #4585) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5983 f38db490-d61c-443f-a65b-d21fe96a405b --- formats/format_gsm.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'formats/format_gsm.c') diff --git a/formats/format_gsm.c b/formats/format_gsm.c index 01fb2a1f9..43a2bb6bf 100755 --- a/formats/format_gsm.c +++ b/formats/format_gsm.c @@ -252,14 +252,7 @@ int unload_module() int usecount() { - int res; - if (ast_mutex_lock(&gsm_lock)) { - ast_log(LOG_WARNING, "Unable to lock gsm list\n"); - return -1; - } - res = glistcnt; - ast_mutex_unlock(&gsm_lock); - return res; + return glistcnt; } char *description() -- cgit v1.2.3