From 81a481d738677708985d82332e32d53cae2b874f Mon Sep 17 00:00:00 2001 From: Mark Spencer <markster@digium.com> Date: Wed, 10 Nov 2004 20:20:18 +0000 Subject: [PATCH] Fix off by one (bug #2872, but different solution) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4198 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsp.c b/dsp.c index e637aa65bd..a906119fe4 100755 --- a/dsp.c +++ b/dsp.c @@ -1606,7 +1606,7 @@ static void ast_dsp_prog_reset(struct ast_dsp *dsp) for (x=0;x<sizeof(modes[dsp->progmode].freqs) / sizeof(modes[dsp->progmode].freqs[0]);x++) { if (modes[dsp->progmode].freqs[x]) { goertzel_init(&dsp->freqs[x], (float)modes[dsp->progmode].freqs[x], dsp->gsamp_size); - max = x; + max = x + 1; } } dsp->freqcount = max; -- GitLab