From: Ronald S. Bultje Date: Mon, 19 May 2003 18:01:42 +0000 (+0000) Subject: Weird C code fix X-Git-Tag: BRANCH-ERROR-ROOT~191 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f5c06b34a74a34a89c3a206e4489c35c21bee7f;p=platform%2Fupstream%2Fgstreamer.git Weird C code fix Original commit message from CVS: Weird C code fix --- diff --git a/gst/gstprops.c b/gst/gstprops.c index e129219..e5d2fd8 100644 --- a/gst/gstprops.c +++ b/gst/gstprops.c @@ -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;