Do not crash on symbol gen for long file names
This commit is contained in:
parent
714bbcf36e
commit
730440b07c
|
@ -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++) {
|
||||
|
|
Loading…
Reference in New Issue