diff options
author | Tristan Matthews <le.businessman@gmail.com> | 2009-04-29 18:52:20 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-04-29 18:53:58 +0100 |
commit | 62db462298d2c4332a53e52648c7925ce6843332 (patch) | |
tree | 7cfdf6b09bd46e5cf971f4fbdf883bb4ef7433fd | |
parent | 9a0c38e01e5d549761917f16c76a32797d62cab6 (diff) | |
download | gst-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.
-rw-r--r-- | gst/flv/gstflvmux.c | 2 |
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) { |