瀏覽代碼

* 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…
取消
儲存