mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Truncate func names when reading symbol maps.
Otherwise they'll get trashed.
This commit is contained in:
parent
778eeb9968
commit
bb41e015b9
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ bool SymbolMap::LoadSymbolMap(const char *filename)
|
|||
|
||||
u32 address,size,vaddress;
|
||||
SymbolType type;
|
||||
char name[128];
|
||||
char name[128] = {0};
|
||||
|
||||
sscanf(line,"%08x %08x %08x %i %127c",&address,&size,&vaddress,(int*)&type,name);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue