Преглед изворни кода

* Make figlet font importer more tolerant with empty lines.

pull/1/head
Sam Hocevar sam пре 18 година
родитељ
комит
374627e287
1 измењених фајлова са 4 додато и 0 уклоњено
  1. +4
    -0
      src/figlet.c

+ 4
- 0
src/figlet.c Прегледај датотеку

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

/* Ignore blank lines, as in jacky.flf */
if(buf[0] == '\n' || buf[0] == '\r')
continue;

if(!buf[0] || buf[0] < '0' || buf[0] > '9')
{
free(data);


Loading…
Откажи
Сачувај