Do not crash on symbol gen for long file names

This commit is contained in:
Devine Lu Linvega 2023-01-01 10:49:05 -08:00
parent 714bbcf36e
commit 730440b07c
1 changed files with 5 additions and 2 deletions

View File

@ -451,8 +451,11 @@ review(char *filename)
static void
writesym(char *filename)
{
char symdst[0x40];
FILE *fp = fopen(scat(scpy(filename, symdst, slen(filename) + 1), ".sym"), "w");
char symdst[0x60];
FILE *fp;
if(slen(filename) > 0x60 - 5)
return;
fp = fopen(scat(scpy(filename, symdst, slen(filename) + 1), ".sym"), "w");
int i;
if(fp != NULL) {
for(i = 0; i < p.llen; i++) {