ソースを参照

Properly handle empty filters

master
sin 9年前
コミット
30ca80310a
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      noice.c

+ 2
- 1
noice.c ファイルの表示

@@ -331,10 +331,11 @@ readln(void)

echo();
curs_set(TRUE);
memset(ln, 0, sizeof(ln));
getnstr(ln, sizeof(ln) - 1);
noecho();
curs_set(FALSE);
return strdup(ln);
return strlen(ln) ? strdup(ln) : NULL;
}

/*


読み込み中…
キャンセル
保存