fix handling of _ in properties
authorDavid Schleef <ds@schleef.org>
Sat, 13 Sep 2003 18:32:16 +0000 (18:32 +0000)
committerDavid Schleef <ds@schleef.org>
Sat, 13 Sep 2003 18:32:16 +0000 (18:32 +0000)
Original commit message from CVS:
fix handling of _ in properties

gst/gstprops.c

index e817196..600d776 100644 (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;