Merge pull request #3165 from dscho/increase-allowed-length-of-interpreter-path

mingw: allow for longer paths in `parse_interpreter()`
This commit is contained in:
Johannes Schindelin 2021-04-03 07:58:12 +02:00 коммит произвёл Matthew John Cheetham
Родитель 6a21c1f63e 8ec1bc2570
Коммит 6b3db6fe78
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1342,7 +1342,7 @@ static const char *quote_arg_msys2(const char *arg)
static const char *parse_interpreter(const char *cmd)
{
static char buf[100];
static char buf[MAX_PATH];
char *p, *opt;
int n, fd;