ref: ebec87a287c6c18058a1fc843b51091b9044e672
parent: 9bcfdb0d50f9280eaf8d3b3693edd7b0fe6910ce
author: Jean-Marc Valin <[email protected]>
date: Mon Aug 29 12:28:01 EDT 2011
oops, opus_free() shouldn't be using opus_free()
--- a/libcelt/os_support.h
+++ b/libcelt/os_support.h
@@ -60,7 +60,7 @@
#ifndef OVERRIDE_CELT_FREE
static inline void opus_free (void *ptr)
{
- opus_free(ptr);
+ free(ptr);
}
#endif