Explorar el Código

* Add a sanity check to the FIGlet font loader.

pull/1/head
Sam Hocevar sam hace 18 años
padre
commit
8cca295e10
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/figlet.c

+ 2
- 2
src/figlet.c Ver fichero

@@ -198,11 +198,11 @@ static int open_font(context_t *cx)
if(toigets(buf, 2048, f) == NULL)
break;

if(!buf[0])
if(!buf[0] || buf[0] < '0' || buf[0] > '9')
{
free(data);
free(cx->lookup);
fprintf(stderr, "read error at glyph %u in `%s'\n",
fprintf(stderr, "read error at glyph #%u in `%s'\n",
cx->glyphs, path);
return -1;
}


Cargando…
Cancelar
Guardar