summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/openjp2/j2k.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/openjp2/j2k.c b/src/lib/openjp2/j2k.c
index e47abdbd..75d4f0ce 100644
--- a/src/lib/openjp2/j2k.c
+++ b/src/lib/openjp2/j2k.c
@@ -11139,8 +11139,9 @@ OPJ_BOOL opj_j2k_encode(opj_j2k_t * p_j2k,
l_max_tile_size = l_current_tile_size;
}
if (l_current_data == NULL) {
- /* Shoul not happen in practice, but will avoid Coverity to */
+ /* Should not happen in practice, but will avoid Coverity to */
/* complain about a null pointer dereference */
+ assert(0);
return OPJ_FALSE;
}