mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
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:
parent
e684e9ea68
commit
1b955c08df
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue