summaryrefslogtreecommitdiffstats
path: root/thumbs.c
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2023-01-28 11:27:40 +0100
committerNRK <nrk@disroot.org>2023-01-28 11:27:40 +0100
commit01f3cf2e4778940a82001e48cfeec767841f52c4 (patch)
tree7d61272eb5c71935238d0ecd52b2806398564fce /thumbs.c
parent6ffc64a04e5e4200103db9df6bd85f958a942d9f (diff)
downloadnsxiv-01f3cf2e4778940a82001e48cfeec767841f52c4.tar.zst
use assertions instead of ignoring bogus arguments (#406)
instead of silently ignoring bogus arguments (i.e programming errors), which can make debugging harder, it's better to assert them so that they get caught faster in debug builds. Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/406 Reviewed-by: explosion-mental <explosion-mental@noreply.codeberg.org>
Diffstat (limited to 'thumbs.c')
-rw-r--r--thumbs.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/thumbs.c b/thumbs.c
index c9e97c4..038b501 100644
--- a/thumbs.c
+++ b/thumbs.c
@@ -21,6 +21,7 @@
#define INCLUDE_THUMBS_CONFIG
#include "config.h"
+#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
@@ -40,8 +41,7 @@ static char* tns_cache_filepath(const char *filepath)
size_t len;
char *cfile = NULL;
- if (*filepath != '/')
- return NULL;
+ assert(*filepath == '/' && "filepath should be result of realpath(3)");
if (strncmp(filepath, cache_dir, strlen(cache_dir)) != 0) {
/* don't cache images inside the cache directory! */
@@ -355,9 +355,7 @@ void tns_unload(tns_t *tns, int n)
{
thumb_t *t;
- if (n < 0 || n >= *tns->cnt)
- return;
-
+ assert(n >= 0 && n < *tns->cnt);
t = &tns->thumbs[n];
if (t->im != NULL) {
@@ -371,9 +369,7 @@ static void tns_check_view(tns_t *tns, bool scrolled)
{
int r;
- if (tns == NULL)
- return;
-
+ assert(tns != NULL);
tns->first -= tns->first % tns->cols;
r = *tns->sel % tns->cols;