mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-23 06:15:10 +00:00
(file device) Fix buffer overflow.
This commit is contained in:
parent
60080d8fe8
commit
f07775a9a2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue