diff options
author | Tristan Matthews <le.businessman@gmail.com> | 2009-04-29 18:52:20 +0100 |
---|---|---|
committer | Dave Robillard <dave@drobilla.net> | 2009-05-03 12:03:19 -0400 |
commit | a60cc16c69dab3f8588c8b72005901308c1f327e (patch) | |
tree | f78f414e6ad764fcbcb85e9231b07386514607a8 | |
parent | 9599f50ae8658d60fc734d8ec5bbbc262e49c081 (diff) | |
download | gst-plugins-bad-a60cc16c69dab3f8588c8b72005901308c1f327e.tar.gz gst-plugins-bad-a60cc16c69dab3f8588c8b72005901308c1f327e.tar.bz2 gst-plugins-bad-a60cc16c69dab3f8588c8b72005901308c1f327e.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) { |