mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 06:56:14 +01:00
Use g_return_val_if_fail, no g_return_if_fail.
* glib/gmarkup.c (g_markup_parse_context_get_element): Use g_return_val_if_fail, no g_return_if_fail.
This commit is contained in:
parent
659fd4113b
commit
e7d3a38f48
@ -1,3 +1,8 @@
|
|||||||
|
2002-08-07 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/gmarkup.c (g_markup_parse_context_get_element):
|
||||||
|
Use g_return_val_if_fail, no g_return_if_fail.
|
||||||
|
|
||||||
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.c: Set the normal PID surrogate priority according
|
* glib/gthread.c: Set the normal PID surrogate priority according
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-08-07 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/gmarkup.c (g_markup_parse_context_get_element):
|
||||||
|
Use g_return_val_if_fail, no g_return_if_fail.
|
||||||
|
|
||||||
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.c: Set the normal PID surrogate priority according
|
* glib/gthread.c: Set the normal PID surrogate priority according
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-08-07 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/gmarkup.c (g_markup_parse_context_get_element):
|
||||||
|
Use g_return_val_if_fail, no g_return_if_fail.
|
||||||
|
|
||||||
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.c: Set the normal PID surrogate priority according
|
* glib/gthread.c: Set the normal PID surrogate priority according
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-08-07 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/gmarkup.c (g_markup_parse_context_get_element):
|
||||||
|
Use g_return_val_if_fail, no g_return_if_fail.
|
||||||
|
|
||||||
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.c: Set the normal PID surrogate priority according
|
* glib/gthread.c: Set the normal PID surrogate priority according
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-08-07 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/gmarkup.c (g_markup_parse_context_get_element):
|
||||||
|
Use g_return_val_if_fail, no g_return_if_fail.
|
||||||
|
|
||||||
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.c: Set the normal PID surrogate priority according
|
* glib/gthread.c: Set the normal PID surrogate priority according
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-08-07 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/gmarkup.c (g_markup_parse_context_get_element):
|
||||||
|
Use g_return_val_if_fail, no g_return_if_fail.
|
||||||
|
|
||||||
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.c: Set the normal PID surrogate priority according
|
* glib/gthread.c: Set the normal PID surrogate priority according
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-08-07 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* glib/gmarkup.c (g_markup_parse_context_get_element):
|
||||||
|
Use g_return_val_if_fail, no g_return_if_fail.
|
||||||
|
|
||||||
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/gthread.c: Set the normal PID surrogate priority according
|
* glib/gthread.c: Set the normal PID surrogate priority according
|
||||||
|
@ -1715,7 +1715,7 @@ g_markup_parse_context_end_parse (GMarkupParseContext *context,
|
|||||||
G_CONST_RETURN gchar *
|
G_CONST_RETURN gchar *
|
||||||
g_markup_parse_context_get_element (GMarkupParseContext *context)
|
g_markup_parse_context_get_element (GMarkupParseContext *context)
|
||||||
{
|
{
|
||||||
g_return_if_fail (context != NULL);
|
g_return_val_if_fail (context != NULL, NULL);
|
||||||
|
|
||||||
if (context->tag_stack == NULL)
|
if (context->tag_stack == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user