summaryrefslogtreecommitdiff
path: root/dsp.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-11-10 20:20:18 +0000
committerMark Spencer <markster@digium.com>2004-11-10 20:20:18 +0000
commit81a481d738677708985d82332e32d53cae2b874f (patch)
treeee3ae7df18d3418bace731016031095fd7114e61 /dsp.c
parent168d706b03d3d887497bf36555b2b290893932b2 (diff)
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
Diffstat (limited to 'dsp.c')
-rwxr-xr-xdsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dsp.c b/dsp.c
index e637aa65b..a906119fe 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;