瀏覽代碼

Simplify check

master
Arun Prakash Jana 4 年之前
父節點
當前提交
37e5e6189a
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: A75979F35C080412
共有 1 個檔案被更改,包括 1 行新增3 行删除
  1. +1
    -3
      src/nnn.c

+ 1
- 3
src/nnn.c 查看文件

@@ -4321,13 +4321,11 @@ static void readpipe(int fd, char **path, char **lastname, char **lastdir)
char ctx, *nextpath = NULL;
ssize_t len = read_nointr(fd, g_buf, 1);

if (len != 1)
if (len != 1 || g_buf[0] < '0')
return;

if (g_buf[0] == '+')
ctx = (char)(get_free_ctx() + 1);
else if (g_buf[0] < '0')
return;
else {
ctx = g_buf[0] - '0';
if (ctx > CTX_MAX)


Loading…
取消
儲存