mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
gresource: Use GError in more places
The API gives us an error message, lets use it.
This commit is contained in:
parent
dfaaf37338
commit
5c951e5b04
@ -113,8 +113,9 @@ extract_resource (GResource *resource,
|
||||
const gchar *path)
|
||||
{
|
||||
GBytes *bytes;
|
||||
GError *error = NULL;
|
||||
|
||||
bytes = g_resource_lookup_data (resource, path, 0, NULL);
|
||||
bytes = g_resource_lookup_data (resource, path, 0, &error);
|
||||
if (bytes != NULL)
|
||||
{
|
||||
gconstpointer data;
|
||||
@ -128,7 +129,8 @@ extract_resource (GResource *resource,
|
||||
}
|
||||
else
|
||||
{
|
||||
g_printerr ("Can't find resource path %s\n", path);
|
||||
g_printerr ("%s\n", error->message);
|
||||
g_error_free (error);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user