mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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:
parent
bdbd0bfac4
commit
6b16636203
2 changed files with 7 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue