Skip to content
Snippets Groups Projects
Commit 874139b8 authored by Mathis Rosenhauer's avatar Mathis Rosenhauer Committed by Thomas Jahns
Browse files

Buffer too small

parent 78f89fdb
No related branches found
No related tags found
No related merge requests found
......@@ -498,7 +498,7 @@ int aec_decode_init(struct aec_stream *strm)
if (state == NULL)
return AEC_MEM_ERROR;
state->se_table = (int *) malloc(180 * sizeof(int));
state->se_table = (int *) malloc(182 * sizeof(int));
if (state->se_table == NULL)
return AEC_MEM_ERROR;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment