Change plt_name size from 100 to 200.
I have jni code with very large symbol names (150 chars max). This change avoids having names classes.
This commit is contained in:
parent
4589fdfad4
commit
2647dc063d
1 changed files with 1 additions and 1 deletions
2
tccelf.c
2
tccelf.c
|
@ -1069,7 +1069,7 @@ static struct sym_attr * put_got_entry(TCCState *s1, int dyn_reloc_type,
|
|||
ElfW(Sym) *sym;
|
||||
struct sym_attr *attr;
|
||||
unsigned got_offset;
|
||||
char plt_name[100];
|
||||
char plt_name[200];
|
||||
int len;
|
||||
Section *s_rel;
|
||||
|
||||
|
|
Loading…
Reference in a new issue