summaryrefslogtreecommitdiffstats
path: root/gst/flv
diff options
context:
space:
mode:
authorJames Andrewartha <trs80@ucc.gu.uwa.edu.au>2009-05-15 08:44:39 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-05-15 15:14:52 +0200
commit2410cd7a003e4ce9977453c946152b9c9c80f20e (patch)
tree4e56582f98180dc29043ce87c674a7dbe890b36a /gst/flv
parent0d9b6a62c894c55a059b8af3ae8cbed501db8938 (diff)
Fix compiler warnings
Fixes bug #582715.
Diffstat (limited to 'gst/flv')
-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 dd27276a..1cc91689 100644
--- a/gst/flv/gstflvmux.c
+++ b/gst/flv/gstflvmux.c
@@ -604,7 +604,7 @@ gst_flv_mux_write_metadata (GstFlvMux * mux)
} else if (!strcmp (tag_name, GST_TAG_ARTIST) ||
!strcmp (tag_name, GST_TAG_TITLE)) {
gchar *s;
- const gchar *t;
+ const gchar *t = NULL;
if (!strcmp (tag_name, GST_TAG_ARTIST))
t = "creator";