Skip to content
Snippets Groups Projects
Commit 31bec963 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Fix small mode leak (forgot to free the new logN array).

parent f400a3c5
No related branches found
No related tags found
No related merge requests found
......@@ -437,11 +437,12 @@ void celt_mode_destroy(CELTMode *mode)
}
}
}
celt_free((int**)mode->bits);
celt_free((int*)mode->eBands);
celt_free((int*)mode->allocVectors);
celt_free((celt_int16**)mode->bits);
celt_free((celt_int16*)mode->eBands);
celt_free((celt_int16*)mode->allocVectors);
celt_free((celt_word16*)mode->window);
celt_free((celt_int16*)mode->logN);
#endif
clt_mdct_clear(&mode->mdct);
......
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