From 45b4dbf298ac95beace1386738c8c6013ae43abb Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Thu, 6 Jan 2005 04:18:15 +0000 Subject: [PATCH] Fix music on hold to quitat hangup rather than during channel destruction (bug #3035) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4691 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_musiconhold.c | 1 + 1 file changed, 1 insertion(+) diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c index aecfeb0d0f..6040be1c68 100755 --- a/res/res_musiconhold.c +++ b/res/res_musiconhold.c @@ -513,6 +513,7 @@ static int moh0_exec(struct ast_channel *chan, void *data) return -1; } while(!ast_safe_sleep(chan, 10000)); + ast_moh_stop(chan); return -1; }