From a4d6ea67a7536e2cb2337527357ce6d3db8639f3 Mon Sep 17 00:00:00 2001 From: markster Date: Wed, 19 Oct 2005 03:51:25 +0000 Subject: [PATCH] Fix res_musiconhold lock git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6831 f38db490-d61c-443f-a65b-d21fe96a405b --- res/res_musiconhold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c index 71e9271c6..8d9c845b8 100755 --- a/res/res_musiconhold.c +++ b/res/res_musiconhold.c @@ -1066,7 +1066,7 @@ static void ast_moh_destroy(void) pid = moh->pid; moh->pid = 0; kill(pid, SIGKILL); - while ((ast_wait_for_input(moh->srcfd, 100) > -1) && (bytes = read(moh->srcfd, buff, 8192)) && time(NULL) < stime) { + while ((ast_wait_for_input(moh->srcfd, 100) > 0) && (bytes = read(moh->srcfd, buff, 8192)) && time(NULL) < stime) { tbytes = tbytes + bytes; } ast_log(LOG_DEBUG, "mpg123 pid %d and child died after %d bytes read\n", pid, tbytes);