summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2017-11-29 06:55:47 -0600
committerEmmanuele Bassi <ebassi@gmail.com>2020-01-07 14:23:05 +0000
commitfdb803e309b96f446e993bc9484f5a237cd23263 (patch)
tree2e2ed4bc64073af278bd1668e3ab7a076dd00f74 /gdk-pixbuf
parent344a74e012ebdae5842b99dabd7c20174c08077d (diff)
downloadgdk-pixbuf-fdb803e309b96f446e993bc9484f5a237cd23263.tar.gz
Jasper: assert and assume that the module callbacks are non-NULL
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/io-jasper.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/gdk-pixbuf/io-jasper.c b/gdk-pixbuf/io-jasper.c
index af4296147..103ac0a80 100644
--- a/gdk-pixbuf/io-jasper.c
+++ b/gdk-pixbuf/io-jasper.c
@@ -66,6 +66,10 @@ jasper_image_begin_load (GdkPixbufModuleSizeFunc size_func,
struct jasper_context *context;
jas_stream_t *stream;
+ g_assert (size_func != NULL);
+ g_assert (prepared_func != NULL);
+ g_assert (updated_func != NULL);
+
jas_init ();
stream = jas_stream_memopen (NULL, 0);
@@ -132,17 +136,15 @@ jasper_image_try_load (struct jasper_context *context, GError **error)
context->width = width = jas_image_cmptwidth (raw_image, 0);
context->height = height = jas_image_cmptheight (raw_image, 0);
- if (context->size_func) {
- (*context->size_func) (&width, &height, context->user_data);
+ (*context->size_func) (&width, &height, context->user_data);
- if (width == 0 || height == 0) {
- jas_image_destroy(raw_image);
- g_set_error_literal (error,
- GDK_PIXBUF_ERROR,
- GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
- _("Transformed JPEG2000 has zero width or height"));
- return FALSE;
- }
+ if (width == 0 || height == 0) {
+ jas_image_destroy(raw_image);
+ g_set_error_literal (error,
+ GDK_PIXBUF_ERROR,
+ GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
+ _("Transformed JPEG2000 has zero width or height"));
+ return FALSE;
}
}
@@ -205,8 +207,7 @@ jasper_image_try_load (struct jasper_context *context, GError **error)
_("Insufficient memory to open JPEG 2000 file"));
return FALSE;
}
- if (context->prepared_func)
- context->prepared_func (context->pixbuf, NULL, context->user_data);
+ context->prepared_func (context->pixbuf, NULL, context->user_data);
}
/* We calculate how much we should shift the pixel
@@ -253,7 +254,7 @@ jasper_image_try_load (struct jasper_context *context, GError **error)
}
/* Update once per line for the last component, otherwise
* we might contain garbage */
- if (context->updated_func && (i == num_components - 1) && k != 0) {
+ if ((i == num_components - 1) && k != 0) {
context->updated_func (context->pixbuf, 0, j, k, 1, context->user_data);
}
}