Fix off-by-one in apathmax() as the path is relative to "/"
1) Use size_t * instead of long * 2) Fallback to PATH_MAX instead of BUFSIZ 3) Header cleanup
This commit is contained in:
@@ -7,7 +7,7 @@ char *
|
||||
agetcwd(void)
|
||||
{
|
||||
char *buf;
|
||||
long size;
|
||||
size_t size;
|
||||
|
||||
apathmax(&buf, &size);
|
||||
if (!getcwd(buf, size))
|
||||
|
Reference in New Issue
Block a user