commit bee861dd4a0c9e332546424749ce879a00a79f94
parent 450ffb02f77fe27ee7168909138bd2e3cb824436
Author: Sebastian <sebasjm@gmail.com>
Date: Mon, 17 Jul 2023 13:07:48 -0300
if the file does not have an extension, ignore it instead of breaking
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd_spa.c b/src/backend/taler-merchant-httpd_spa.c
@@ -187,7 +187,9 @@ build_webui (void *cls,
mime = NULL;
ext = strrchr (dn, '.');
- GNUNET_assert (NULL != ext);
+ if (ext == NULL)
+ return GNUNET_OK;
+
ext++;
for (unsigned int i = 0; NULL != mime_map[i].ext; i++)
if (0 == strcasecmp (ext,