summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGaël Bonithon <gael@xfce.org>2021-12-20 17:47:14 +0100
committerGaël Bonithon <gael@xfce.org>2021-12-20 18:28:53 +0100
commitfe51cbf69d297fd391d7361877529b17118875b2 (patch)
tree75d6512b35559f3ff302f31f3b1d64b6ae4e78b6 /plugins
parentb7beef90918c2d3c3b3e33b75dfc4c08e0835398 (diff)
downloadtumbler-fe51cbf69d297fd391d7361877529b17118875b2.tar.gz
pixbuf-thumbnailer: Simplify error handling
Diffstat (limited to 'plugins')
-rw-r--r--plugins/pixbuf-thumbnailer/pixbuf-thumbnailer.c35
1 files changed, 11 insertions, 24 deletions
diff --git a/plugins/pixbuf-thumbnailer/pixbuf-thumbnailer.c b/plugins/pixbuf-thumbnailer/pixbuf-thumbnailer.c
index 33f7798..44d2206 100644
--- a/plugins/pixbuf-thumbnailer/pixbuf-thumbnailer.c
+++ b/plugins/pixbuf-thumbnailer/pixbuf-thumbnailer.c
@@ -215,6 +215,9 @@ pixbuf_thumbnailer_new_from_stream (GInputStream *stream,
src = gdk_pixbuf_loader_get_pixbuf (loader);
if (G_LIKELY (src != NULL))
pixbuf = gdk_pixbuf_apply_embedded_orientation (src);
+ else
+ g_set_error (error, TUMBLER_ERROR, TUMBLER_ERROR_NO_CONTENT,
+ "Failed to create pixbuf from stream");
}
g_object_unref (loader);
@@ -251,22 +254,14 @@ pixbuf_thumbnailer_create (TumblerAbstractThumbnailer *thumbnailer,
/* try to open the source file for reading */
file = g_file_new_for_uri (uri);
- stream = g_file_read (file, NULL, &error);
+ stream = g_file_read (file, cancellable, &error);
g_object_unref (file);
if (stream == NULL)
{
- if (error != NULL)
- {
- g_signal_emit_by_name (thumbnailer, "error", uri, error->code,
- error->message);
- g_error_free (error);
- }
- else
- {
- g_signal_emit_by_name (thumbnailer, "error", uri, TUMBLER_ERROR_NO_CONTENT,
- "Failed to open pixbuf stream");
- }
+ g_signal_emit_by_name (thumbnailer, "error", uri, error->code,
+ error->message);
+ g_error_free (error);
return;
}
@@ -285,19 +280,11 @@ pixbuf_thumbnailer_create (TumblerAbstractThumbnailer *thumbnailer,
if (pixbuf == NULL)
{
- if (error != NULL)
- {
- g_signal_emit_by_name (thumbnailer, "error", uri, error->code,
- error->message);
- g_error_free (error);
- }
- else
- {
- g_signal_emit_by_name (thumbnailer, "error", uri, TUMBLER_ERROR_NO_CONTENT,
- "Failed to create pixbuf from stream");
- }
-
+ g_signal_emit_by_name (thumbnailer, "error", uri, error->code,
+ error->message);
+ g_error_free (error);
g_object_unref (thumbnail);
+
return;
}