summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gst/flx/gstflxdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c
index aa1bed502..193225907 100644
--- a/gst/flx/gstflxdec.c
+++ b/gst/flx/gstflxdec.c
@@ -812,8 +812,8 @@ gst_flxdec_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
}
/* create delta and output frame */
- flxdec->frame_data = g_malloc (flxdec->size);
- flxdec->delta_data = g_malloc (flxdec->size);
+ flxdec->frame_data = g_malloc0 (flxdec->size);
+ flxdec->delta_data = g_malloc0 (flxdec->size);
flxdec->state = GST_FLXDEC_PLAYING;
}