Skip to content

Commit

Permalink
Merge pull request #3165 from dscho/increase-allowed-length-of-interp…
Browse files Browse the repository at this point in the history
…reter-path

mingw: allow for longer paths in `parse_interpreter()`
  • Loading branch information
dscho authored and Git for Windows Build Agent committed Apr 3, 2021
2 parents f24f503 + 05c5218 commit ec1b7f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compat/mingw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1481,7 +1481,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[248];
char *p, *opt;
int n, fd;

Expand Down

0 comments on commit ec1b7f8

Please sign in to comment.