Use enough buffer length for file names

This commit is contained in:
Arun Prakash Jana 2020-01-29 05:22:03 +05:30
parent cb6f30fed4
commit c434d8d4bc
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@
#define ISBLANK(x) ((x) == ' ' || (x) == '\t')
#define TOUPPER(ch) (((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
#define CMD_LEN_MAX (PATH_MAX + ((NAME_MAX + 1) << 1))
#define READLINE_MAX 128
#define READLINE_MAX 256
#define FILTER '/'
#define RFILTER '\\'
#define CASE ':'