gst/gststructure.c: Allow '+' as well, it can be part of media or mime types such...
authorTim-Philipp Müller <tim@centricular.net>
Tue, 16 Oct 2007 21:48:23 +0000 (21:48 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Tue, 16 Oct 2007 21:48:23 +0000 (21:48 +0000)
Original commit message from CVS:
* gst/gststructure.c:
Allow '+' as well, it can be part of media or mime types
such as image/svg+xml.

ChangeLog
gst/gststructure.c

index 693bc24be28815ac7178d1e99600f16a0b71ff61..d3e45b41263f060c6d82ded88527057754f9e0cb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/gststructure.c:
+         Allow '+' as well, it can be part of media or mime types
+         such as image/svg+xml.
+
 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
 
        * docs/gst/gstreamer-sections.txt:
index a17fa61f3d3befcd430d6942e71725735d193fe8..9dd1bb00934ca1b14ea8b1e1e8145f4a643ca213 100644 (file)
@@ -153,7 +153,7 @@ gst_structure_validate_name (const gchar * name)
 
   /* FIXME: test name string more */
   s = &name[1];
-  while (*s && (g_ascii_isalnum (*s) || strchr ("/-_.:", *s) != NULL))
+  while (*s && (g_ascii_isalnum (*s) || strchr ("/-_.:+", *s) != NULL))
     s++;
   if (*s != '\0') {
     GST_WARNING ("Invalid character '%c' at offset %lu in structure name: %s",