summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2013-03-03 11:53:04 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2013-03-03 11:53:04 +0100
commit181078608310c772e414f8b70dca724768499bde (patch)
treeacf6e55d3d2d79dc6809a4a1b0652745a4980e69
parent677bfecc6f85fb9ea5521bcddf8b2f2ee6b0d4f7 (diff)
flacparse: Fix (wrong) use of uninitialized variable compiler warning
-rw-r--r--gst/audioparsers/gstflacparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/audioparsers/gstflacparse.c b/gst/audioparsers/gstflacparse.c
index 777aeab44..c8ecf8084 100644
--- a/gst/audioparsers/gstflacparse.c
+++ b/gst/audioparsers/gstflacparse.c
@@ -753,7 +753,7 @@ gst_flac_parse_handle_frame (GstBaseParse * parse,
GstMapInfo map;
gboolean result = TRUE;
GstFlowReturn ret = GST_FLOW_OK;
- guint framesize;
+ guint framesize = 0;
gst_buffer_map (buffer, &map, GST_MAP_READ);