mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-05 22:05:04 +00:00
(uxnasm)Allow more space for symbols filename, and check for length
This commit is contained in:
parent
2f3954d398
commit
c97aa87faf
1 changed files with 5 additions and 2 deletions
|
@ -451,8 +451,11 @@ review(char *filename)
|
||||||
static void
|
static void
|
||||||
writesym(char *filename)
|
writesym(char *filename)
|
||||||
{
|
{
|
||||||
char symdst[0x40];
|
char symdst[0x60];
|
||||||
FILE *fp = fopen(scat(scpy(filename, symdst, slen(filename) + 1), ".sym"), "w");
|
FILE *fp
|
||||||
|
if(slen(filename) > 0x60 - 5)
|
||||||
|
return;
|
||||||
|
fp = fopen(scat(scpy(filename, symdst, slen(filename) + 1), ".sym"), "w");
|
||||||
int i;
|
int i;
|
||||||
if(fp != NULL) {
|
if(fp != NULL) {
|
||||||
for(i = 0; i < p.llen; i++) {
|
for(i = 0; i < p.llen; i++) {
|
||||||
|
|
Loading…
Reference in a new issue