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 Jun 25, 2024
2 parents a9becdd + e94c645 commit 70675a1
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 @@ -1354,7 +1354,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;

Expand Down

0 comments on commit 70675a1

Please sign in to comment.