summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/lib/codeclib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/lib/codeclib.c b/apps/codecs/lib/codeclib.c
index bb736ad887..36f4279941 100644
--- a/apps/codecs/lib/codeclib.c
+++ b/apps/codecs/lib/codeclib.c
@@ -29,9 +29,9 @@
29 29
30/* The following variables are used by codec_malloc() to make use of free RAM 30/* The following variables are used by codec_malloc() to make use of free RAM
31 * within the statically allocated codec buffer. */ 31 * within the statically allocated codec buffer. */
32static size_t mem_ptr; 32static size_t mem_ptr = 0;
33static size_t bufsize; 33static size_t bufsize = 0;
34static unsigned char* mallocbuf; 34static unsigned char* mallocbuf = NULL;
35 35
36int codec_init(void) 36int codec_init(void)
37{ 37{