uri: Silence a compiler warning

This is a false positive for use initialized. The variable is set and
used enclosed in the safe if condition.
This commit is contained in:
Nicolas Dufresne 2015-04-03 19:12:48 -04:00
parent e684e9ea68
commit 1b955c08df

View file

@ -1297,7 +1297,7 @@ _gst_uri_string_to_list (const gchar * str, const gchar * sep, gboolean convert,
if (str) {
guint pct_sep_len = 0;
gchar *pct_sep;
gchar *pct_sep = NULL;
gchar **split_str;
if (convert && !unescape) {