From fb7adfa6d1d9286e5f1c5fa8ab47726ac6c4fd01 Mon Sep 17 00:00:00 2001
From: Sean Bright <sean@malleable.com>
Date: Mon, 15 Mar 2010 21:55:44 +0000
Subject: [PATCH] Resolve a crash in SLATrunk when the specified trunk doesn't
 exist.

Reported by philipp64 in #asterisk-dev.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@252623 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 apps/app_meetme.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 17fec5f0cb..73be47145e 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -5954,7 +5954,6 @@ static int sla_trunk_exec(struct ast_channel *chan, const char *data)
 	if (!trunk) {
 		ast_log(LOG_ERROR, "SLA Trunk '%s' not found!\n", args.trunk_name);
 		pbx_builtin_setvar_helper(chan, "SLATRUNK_STATUS", "FAILURE");
-		ast_atomic_fetchadd_int((int *) &trunk->ref_count, -1);
 		sla_queue_event(SLA_EVENT_CHECK_RELOAD);	
 		return 0;
 	}
-- 
GitLab