From affbad7a77a5ccaa42f70db716791aeeecf2c1cf Mon Sep 17 00:00:00 2001 From: Tony Cook Date: Sat, 2 Feb 2019 11:50:09 +1100 Subject: [PATCH] add lint comments where switch() case fallthough is expected in tga parsing CID 185328. --- tga.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tga.c b/tga.c index 42e66621..8ee635a9 100644 --- a/tga.c +++ b/tga.c @@ -723,8 +723,8 @@ i_readtga_wiol(io_glue *ig, int length) { mapped = 1; switch (header.datatypecode) { - case 2: /* Uncompressed, rgb images */ - case 10: /* Compressed, rgb images */ + case 2: /* Uncompressed, rgb images */ /* FALLTHROUGH */ + case 10: /* Compressed, rgb images */ /* FALLTHROUGH */ mapped = 0; case 1: /* Uncompressed, color-mapped images */ case 9: /* Compressed, color-mapped images */ @@ -736,7 +736,7 @@ i_readtga_wiol(io_glue *ig, int length) { if (idstring) myfree(idstring); return NULL; break; - case 3: /* Uncompressed, grayscale images */ + case 3: /* Uncompressed, grayscale images */ /* FALLTHROUGH */ case 11: /* Compressed, grayscale images */ mapped = 0; channels = 1; -- 2.39.2