aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_musiconhold.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-01 13:59:13 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-01 13:59:13 +0000
commit069a0fb5a6094714672f5c19a9332ab63609a0df (patch)
tree976d66d0f9ee3bbb64fa50b814050ad73584997c /res/res_musiconhold.c
parent68cc072bd55fdb9c3e5a40152c2c71e5cd07042c (diff)
Merged revisions 84160 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r84160 | file | 2007-10-01 10:57:42 -0300 (Mon, 01 Oct 2007) | 6 lines Fix randomness. save_pos was being set to 0 initially instead of -1, causing it to jump to position 0 when moh started. (closes issue #10859) Reported by: jamesgolovich Patches: asterisk-mohpos2.diff.txt uploaded by jamesgolovich (license 176) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@84161 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_musiconhold.c')
-rw-r--r--res/res_musiconhold.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c
index 5c6490fcc..80b272526 100644
--- a/res/res_musiconhold.c
+++ b/res/res_musiconhold.c
@@ -310,6 +310,7 @@ static void *moh_files_alloc(struct ast_channel *chan, void *params)
if (!chan->music_state && (state = ast_calloc(1, sizeof(*state)))) {
chan->music_state = state;
state->class = class;
+ state->save_pos = -1;
} else
state = chan->music_state;