Weird C code fix
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 19 May 2003 18:01:42 +0000 (18:01 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 19 May 2003 18:01:42 +0000 (18:01 +0000)
Original commit message from CVS:
Weird C code fix

gst/gstprops.c

index e129219..e5d2fd8 100644 (file)
@@ -423,7 +423,7 @@ gst_props_entry_from_string_no_name (gchar *s, gchar **after, gboolean has_type)
       if (*check == ')') break;
       if (*check++ != ',') goto error;
     } while (TRUE);
-    *check++;
+    check++;
     while (g_ascii_isspace (*check)) check++;    
     *after = check;
     return entry;