fix handling of _ in properties

Original commit message from CVS:
fix handling of _ in properties
This commit is contained in:
David Schleef 2003-09-13 18:32:16 +00:00
parent eb01d6187a
commit a2961db715

View file

@ -486,7 +486,7 @@ gst_props_entry_from_string (gchar *str, gchar **after)
GstPropsEntry *entry;
name = s = str;
while (g_ascii_isalnum (*s)) s++;
while (g_ascii_isalnum (*s) || *s == '_' || *s == '-') s++;
del = s;
while (g_ascii_isspace (*s)) s++;
if (!(*s == '=' || *s == ':')) return NULL;