summaryrefslogtreecommitdiffstats
path: root/gst/flv/gstflvmux.c
diff options
context:
space:
mode:
authorTristan Matthews <le.businessman@gmail.com>2009-04-29 18:52:20 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-04-29 18:53:58 +0100
commit62db462298d2c4332a53e52648c7925ce6843332 (patch)
tree7cfdf6b09bd46e5cf971f4fbdf883bb4ef7433fd /gst/flv/gstflvmux.c
parent9a0c38e01e5d549761917f16c76a32797d62cab6 (diff)
downloadgst-plugins-bad-62db462298d2c4332a53e52648c7925ce6843332.tar.gz
gst-plugins-bad-62db462298d2c4332a53e52648c7925ce6843332.tar.bz2
gst-plugins-bad-62db462298d2c4332a53e52648c7925ce6843332.zip
flvmux: init variable to NULL to fix compiler warning
Fixes #580786.
Diffstat (limited to 'gst/flv/gstflvmux.c')
-rw-r--r--gst/flv/gstflvmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/flv/gstflvmux.c b/gst/flv/gstflvmux.c
index d0b6411d..dd27276a 100644
--- a/gst/flv/gstflvmux.c
+++ b/gst/flv/gstflvmux.c
@@ -631,7 +631,7 @@ gst_flv_mux_write_metadata (GstFlvMux * mux)
}
if (mux->have_video) {
- GstPad *video_pad;
+ GstPad *video_pad = NULL;
GSList *l = mux->collect->data;
for (; l; l = l->next) {