From: Colin Walters Date: Tue, 22 Jul 2014 18:21:31 +0000 (-0400) Subject: gsettingsschema: Suppress return value check X-Git-Tag: 2.41.3~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5fe71c7c5c44b429eebba028cca6ecdc1356b50c;hp=acdcf5cd50ccbf76fb4d74dbef4e768d5980e46e;p=platform%2Fupstream%2Fglib.git gsettingsschema: Suppress return value check We're intentionally ignoring the value here. Pacifies static analysis. https://bugzilla.gnome.org/show_bug.cgi?id=733576 --- diff --git a/gio/gsettingsschema.c b/gio/gsettingsschema.c index 517198b..a7e0838 100644 --- a/gio/gsettingsschema.c +++ b/gio/gsettingsschema.c @@ -673,8 +673,9 @@ parse_into_text_tables (const gchar *directory, GMarkupParseContext *context; context = g_markup_parse_context_new (&parser, G_MARKUP_TREAT_CDATA_AS_TEXT, &info, NULL); + /* Ignore errors here, this is best effort only. */ if (g_markup_parse_context_parse (context, contents, size, NULL)) - g_markup_parse_context_end_parse (context, NULL); + (void) g_markup_parse_context_end_parse (context, NULL); g_markup_parse_context_free (context); /* Clean up dangling stuff in case there was an error. */