Original commit message from CVS:
* tests/check/elements/amrnbenc.c: (push_data):
Init memory before feeding it to the encoder to make
the valgrind test succeed.
+2006-06-12 Wim Taymans <wim@fluendo.com>
+
+ * tests/check/elements/amrnbenc.c: (push_data):
+ Init memory before feeding it to the encoder to make
+ the valgrind test succeed.
+
2006-06-12 Edward Hervey <edward@fluendo.com>
* gst/asfdemux/.cvsignore:
{
GstBuffer *buffer;
GstFlowReturn res;
- gchar *data = g_malloc (size);
+ gchar *data = g_malloc0 (size);
buffer = buffer_new (data, size);
g_free (data);