Made symbol name char* due to issues with cleanup
This commit is contained in:
parent
91553233ca
commit
7c09e3de9c
|
@ -36,7 +36,7 @@ typedef enum {
|
||||||
// symbol table entry
|
// symbol table entry
|
||||||
typedef struct{
|
typedef struct{
|
||||||
uintptr_t addr;
|
uintptr_t addr;
|
||||||
char name[MAX_NAME_LEN];
|
char* name;
|
||||||
size_t size;
|
size_t size;
|
||||||
} symbol_entry_t;
|
} symbol_entry_t;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue