mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
g722enc: fix size argument in memset
Fixes CID700725.
This commit is contained in:
parent
4a7c0c4555
commit
f1de23faaa
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ static void g722_encode_trellis(G722Context *c, int trellis,
|
||||||
for (i = 0; i < 2; i++) {
|
for (i = 0; i < 2; i++) {
|
||||||
nodes[i] = c->nodep_buf[i];
|
nodes[i] = c->nodep_buf[i];
|
||||||
nodes_next[i] = c->nodep_buf[i] + frontier;
|
nodes_next[i] = c->nodep_buf[i] + frontier;
|
||||||
memset(c->nodep_buf[i], 0, 2 * frontier * sizeof(*c->nodep_buf));
|
memset(c->nodep_buf[i], 0, 2 * frontier * sizeof(*c->nodep_buf[i]));
|
||||||
nodes[i][0] = c->node_buf[i] + frontier;
|
nodes[i][0] = c->node_buf[i] + frontier;
|
||||||
nodes[i][0]->ssd = 0;
|
nodes[i][0]->ssd = 0;
|
||||||
nodes[i][0]->path = 0;
|
nodes[i][0]->path = 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue