summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTodd Agulnick <todd@agulnick.com>2013-12-15 21:01:42 -0800
committerSebastian Dröge <sebastian@centricular.com>2013-12-16 16:51:29 +0100
commit38d8fa12a5f31b9e6898338e916bcb32719e4282 (patch)
treefc834d24e82dd8975c157987e698d66404f6140d /sys
parent5a48fb7cdb2ff34fcf8523bd7a3ae0f5587361ed (diff)
downloadgstreamer-plugins-base-38d8fa12a5f31b9e6898338e916bcb32719e4282.tar.gz
Some compiler warning fixes to satisfy XCode compiler
https://bugzilla.gnome.org/show_bug.cgi?id=720513
Diffstat (limited to 'sys')
-rw-r--r--sys/xvimage/xvimagesink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c
index cb48e126a..eddd75748 100644
--- a/sys/xvimage/xvimagesink.c
+++ b/sys/xvimage/xvimagesink.c
@@ -909,7 +909,7 @@ gst_xvimagesink_show_frame (GstVideoSink * vsink, GstBuffer * buf)
{
GstFlowReturn res;
GstXvImageSink *xvimagesink;
- GstBuffer *to_put;
+ GstBuffer *to_put = NULL;
GstMemory *mem;
xvimagesink = GST_XVIMAGESINK (vsink);