瀏覽代碼

Fix illegal access

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

+ 7
- 4
src/nnn.c 查看文件

@@ -1594,6 +1594,8 @@ static bool initcurses(void *oldmask)
use_default_colors();

if (colors && *colors == '#') {
char *sep = strchr(colors, ';');

if (COLORS >= 256) {
++colors;
ext = TRUE;
@@ -1603,12 +1605,13 @@ static bool initcurses(void *oldmask)
* to NULL so we don't interpret separator and fallback
* if fewer than CTX_MAX xterm 256 colors are specified.
*/
char *sep = strchr(colors, ';');
if (sep)
*sep = '\0';
} else
/* Check if 8 colors fallback is appended */
colors = strchr(colors, ';') + 1;
} else {
colors = sep; /* Detect if 8 colors fallback is appended */
if (colors)
++colors;
}
}

/* Get and set the context colors */


Loading…
取消
儲存