diff options
author | Sebastian Wilhelmi <wilhelmi@ira.uka.de> | 2000-09-01 12:47:42 +0000 |
---|---|---|
committer | Sebastian Wilhelmi <wilhelmi@src.gnome.org> | 2000-09-01 12:47:42 +0000 |
commit | 21a498b1a54aa59bd0a3c4e6985307ec326683d2 (patch) | |
tree | ba4a2f5255409165e01c5cecf0df29d9d5a9257e /glib/gerror.c | |
parent | 3dcf39eb77dc324b6838a87fa82fb6d10a208cf7 (diff) | |
download | glib-21a498b1a54aa59bd0a3c4e6985307ec326683d2.tar.gz |
Added function g_propagte_error to hand over local errors to the calling
2000-09-01 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gerror.c, gerror.h (g_propagte_error): Added function
g_propagte_error to hand over local errors to the calling
function.
Diffstat (limited to 'glib/gerror.c')
-rw-r--r-- | glib/gerror.c | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/glib/gerror.c b/glib/gerror.c index 0a1a4dbc3..17baf19eb 100644 --- a/glib/gerror.c +++ b/glib/gerror.c @@ -117,11 +117,14 @@ g_error_matches (const GError *error, error->code == code; } +#define ERROR_OVERWRITTEN_WARNING "GError set over the top of a previous GError or uninitialized memory.\n" \ + "This indicates a bug in someone's code. You must ensure an error is NULL before it's set." + void -g_set_error (GError **err, - GQuark domain, - gint code, - const gchar *format, +g_set_error (GError **err, + GQuark domain, + gint code, + const gchar *format, ...) { va_list args; @@ -130,14 +133,28 @@ g_set_error (GError **err, return; if (*err != NULL) - g_warning ("GError set over the top of a previous GError or uninitialized memory.\n" - "This indicates a bug in someone's code. You must ensure an error is NULL before it's set."); + g_warning (ERROR_OVERWRITTEN_WARNING); va_start (args, format); *err = g_error_new_valist (domain, code, format, args); va_end (args); } +void +g_propagate_error (GError **dest, + GError *src) +{ + g_return_if_fail (src != NULL); + + if (dest == NULL) + return; + + if (*dest != NULL) + g_warning (ERROR_OVERWRITTEN_WARNING); + + *dest = src; +} + void g_clear_error (GError **err) { |