mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
playbin2: fix compiler warning
Remove a check for gchar >= 128
This commit is contained in:
parent
b678f6cf69
commit
a330ff0721
1 changed files with 1 additions and 1 deletions
|
@ -1284,7 +1284,7 @@ gst_playbin_uri_is_valid (GstPlayBin * playbin, const gchar * uri)
|
|||
return FALSE;
|
||||
|
||||
for (c = uri; *c != '\0'; ++c) {
|
||||
if (*c >= 128 || !g_ascii_isprint (*c))
|
||||
if (!g_ascii_isprint (*c))
|
||||
goto invalid;
|
||||
if (*c == ' ')
|
||||
goto invalid;
|
||||
|
|
Loading…
Reference in a new issue