Ver código fonte

Guard against too many key-value pairs

master
Arun Prakash Jana 4 anos atrás
pai
commit
5533e38fbb
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: A75979F35C080412
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c Ver arquivo

@@ -2915,7 +2915,7 @@ static bool parsekvpair(kv **arr, char **envcpy, const uchar id, ushort *items)
++nextkey;
}

if (!maxitems)
if (!maxitems || maxitems > 100)
return FALSE;

*arr = calloc(maxitems, sizeof(kv));


Carregando…
Cancelar
Salvar