libs/gst/base/gstbasetransform.c: Fix a "may be used unitialized" warning.

Original commit message from CVS:
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_buffer_alloc):
Fix a "may be used unitialized" warning.
This commit is contained in:
Edward Hervey 2008-08-11 15:14:28 +00:00
parent bdbd0bfac4
commit 6b16636203
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-08-11 Edward Hervey <edward.hervey@collabora.co.uk>
* libs/gst/base/gstbasetransform.c:
(gst_base_transform_buffer_alloc):
Fix a "may be used unitialized" warning.
2008-08-11 Stefan Kost <ensonic@users.sf.net>
* docs/gst/gstreamer-sections.txt:

View file

@ -1328,7 +1328,7 @@ gst_base_transform_buffer_alloc (GstPad * pad, guint64 offset, guint size,
{
GstBaseTransform *trans;
GstBaseTransformPrivate *priv;
GstFlowReturn res;
GstFlowReturn res = GST_FLOW_OK;
gboolean proxy = FALSE, suggest = FALSE;
GstCaps *sink_suggest;
guint size_suggest = 0;