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

oops, opus_free() shouldn't be using opus_free()

parent 9bcfdb0d
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ static inline void *opus_alloc_scratch (size_t size)
#ifndef OVERRIDE_CELT_FREE
static inline void opus_free (void *ptr)
{
opus_free(ptr);
free(ptr);
}
#endif
......
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