(file device) Fix buffer overflow.

This commit is contained in:
Andrew Alderwick 2023-02-17 21:39:14 +00:00
parent 60080d8fe8
commit f07775a9a2
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ static Uint16
get_entry(char *p, Uint16 len, const char *pathname, const char *basename, int fail_nonzero)
{
struct stat st;
if(len < strlen(basename) + 7)
if(len < strlen(basename) + 8)
return 0;
if(stat(pathname, &st))
return fail_nonzero ? sprintf(p, "!!!! %s\n", basename) : 0;