mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
gst/parse/parse.l: fix for G_DISABLE_ASSERT
Original commit message from CVS: * gst/parse/parse.l: fix for G_DISABLE_ASSERT
This commit is contained in:
parent
2bb8691df2
commit
f8f2f5a58d
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-08-03 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* gst/parse/parse.l:
|
||||
fix for G_DISABLE_ASSERT
|
||||
|
||||
2004-08-03 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/gstbin.c: (gst_bin_get_type),
|
||||
|
|
|
@ -110,7 +110,8 @@ _link ("!"[[:space:]]*{_caps}([[:space:]]*(";"[[:space:]]*{_caps})*[[:space:]]*)
|
|||
while (g_ascii_isspace (*c)) c++;
|
||||
c = lvalp->s = gst_parse_strdup (c);
|
||||
while (*c) c++;
|
||||
g_assert (*--c == '!');
|
||||
if (*--c != '!')
|
||||
g_assert_not_reached ();
|
||||
while (g_ascii_isspace (*--c));
|
||||
*++c = '\0';
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue