Przeglądaj źródła

Guard against too many key-value pairs

master
Arun Prakash Jana 4 lat temu
rodzic
commit
5533e38fbb
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: A75979F35C080412
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c Wyświetl plik

@@ -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));


Ładowanie…
Anuluj
Zapisz