Merge pull request #3093 from topcat001/pathfix

Use PATH_MAX instead of MAXPATHLEN.
This commit is contained in:
Anindya Mukherjee
2022-02-28 13:16:23 -08:00
committed by GitHub

View File

@ -141,7 +141,7 @@ char *
osdep_get_cwd(int fd)
{
int name[] = { CTL_KERN, KERN_PROC_CWD, 0 };
static char path[MAXPATHLEN];
static char path[PATH_MAX];
size_t pathlen = sizeof path;
if ((name[2] = tcgetpgrp(fd)) == -1)