diff Plugins/Input/wma/libffwma/parser.c @ 142:5ce1d36e9ff5 trunk

[svn] Don't build wma by default, it's not working.
author nenolod
date Thu, 10 Nov 2005 15:56:32 -0800
parents b8d4c1faa6d7
children 12004b385a96
line wrap: on
line diff
--- a/Plugins/Input/wma/libffwma/parser.c	Thu Nov 10 15:15:54 2005 -0800
+++ b/Plugins/Input/wma/libffwma/parser.c	Thu Nov 10 15:56:32 2005 -0800
@@ -41,11 +41,11 @@
     }
     return NULL;
  found:
-    s = av_mallocz(sizeof(AVCodecParserContext));
+    s = malloc(sizeof(AVCodecParserContext));
     if (!s)
         return NULL;
     s->parser = parser;
-    s->priv_data = av_mallocz(parser->priv_data_size);
+    s->priv_data = malloc(parser->priv_data_size);
     if (!s->priv_data) {
         free(s);
         return NULL;