diff --git a/configuration.c b/configuration.c index 4a87e942dc..2178fab954 100644 --- a/configuration.c +++ b/configuration.c @@ -2530,7 +2530,6 @@ bool config_save_file(const char *path) { float msg_color; unsigned i = 0; - bool tmp_bool = false; bool ret = false; config_file_t *conf = config_file_new(path); settings_t *settings = config_get_ptr(); diff --git a/libretro-common/formats/png/rpng.c b/libretro-common/formats/png/rpng.c index 31fa0c8b00..47abc04e4e 100644 --- a/libretro-common/formats/png/rpng.c +++ b/libretro-common/formats/png/rpng.c @@ -1016,27 +1016,23 @@ bool rpng_iterate_image(rpng_t *rpng) break; case PNG_CHUNK_tRNS: + if (rpng->has_idat) + goto error; + + if (rpng->ihdr.color_type == PNG_IHDR_COLOR_PLT) { - unsigned entries = chunk.size / 3; - - if (rpng->has_idat) + /* we should compare with the number of palette entries */ + if (chunk.size > 256) goto error; - - if (rpng->ihdr.color_type == PNG_IHDR_COLOR_PLT) - { - /* we should compare with the number of palette entries */ - if (chunk.size > 256) - goto error; - - buf += 8; - if (!png_read_trns(buf, rpng->palette, chunk.size)) - goto error; - } - /* TODO: support colorkey in grayscale and truecolor images */ + buf += 8; - rpng->has_trns = true; + if (!png_read_trns(buf, rpng->palette, chunk.size)) + goto error; } + /* TODO: support colorkey in grayscale and truecolor images */ + + rpng->has_trns = true; break; case PNG_CHUNK_IDAT: