projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb01d61
)
fix handling of _ in properties
author
David Schleef
<ds@schleef.org>
Sat, 13 Sep 2003 18:32:16 +0000
(18:32 +0000)
committer
David 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
patch
|
blob
|
history
diff --git
a/gst/gstprops.c
b/gst/gstprops.c
index
e817196
..
600d776
100644
(file)
--- a/
gst/gstprops.c
+++ b/
gst/gstprops.c
@@
-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;