dfbvideosink: Fix unitialized variable compiler warning
authorSebastian Dröge <sebastian@centricular.com>
Sat, 8 Feb 2014 17:58:38 +0000 (18:58 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Sat, 8 Feb 2014 17:58:38 +0000 (18:58 +0100)
ext/directfb/dfbvideosink.c

index 5daec12..e2f8e8d 100644 (file)
@@ -2252,7 +2252,7 @@ gst_dfbvideosink_propose_allocation (GstBaseSink * bsink, GstQuery * query)
   GstBufferPool *pool;
   GstCaps *caps;
   gboolean need_pool;
-  guint size;
+  guint size = 0;
 
   dfbvideosink = GST_DFBVIDEOSINK (bsink);