Explorar el Código

img2txt: reject pictures with 0 bits per plane.

Fixes: #42
tags/v0.99.beta20
Sam Hocevar hace 6 años
padre
commit
813baea7a7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/common-image.c

+ 1
- 1
src/common-image.c Ver fichero

@@ -153,7 +153,7 @@ struct image * load_image(char const * name)
uint32_t depth = (bpp + 7) / 8;

/* Sanity check */
if (!im->w || im->w > 0x10000 || !im->h || im->h > 0x10000 || planes != 1)
if (!depth || !im->w || im->w > 0x10000 || !im->h || im->h > 0x10000 || planes != 1)
{
caca_file_close(f);
free(im);


Cargando…
Cancelar
Guardar