mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
In rsym, allow a stabs entry to be longer than 256 characters, so that ROS may be compiled with -feliminate-unused-debug-symbols which reduces the needed disk space a lot.
svn path=/trunk/; revision=35020
This commit is contained in:
parent
ca26e8cac7
commit
4509402aa9
1 changed files with 6 additions and 7 deletions
|
@ -143,6 +143,7 @@ ConvertStabs(ULONG *SymbolsCount, PROSSYM_ENTRY *SymbolsBase,
|
|||
ULONG_PTR Address, LastFunctionAddress;
|
||||
int First = 1;
|
||||
char *Name;
|
||||
ULONG NameLen;
|
||||
char FuncName[256];
|
||||
PROSSYM_ENTRY Current;
|
||||
|
||||
|
@ -220,18 +221,16 @@ ConvertStabs(ULONG *SymbolsCount, PROSSYM_ENTRY *SymbolsBase,
|
|||
Current->Address = Address;
|
||||
Current->FileOffset = Current[-1].FileOffset;
|
||||
}
|
||||
if (sizeof(FuncName) <= strlen((char *) StabStringsBase + StabEntry[i].n_strx))
|
||||
Name = (char *) StabStringsBase + StabEntry[i].n_strx;
|
||||
NameLen = strcspn(Name, ":");
|
||||
if (sizeof(FuncName) <= NameLen)
|
||||
{
|
||||
free(*SymbolsBase);
|
||||
fprintf(stderr, "Function name too long\n");
|
||||
return 1;
|
||||
}
|
||||
strcpy(FuncName, (char *) StabStringsBase + StabEntry[i].n_strx);
|
||||
Name = strchr(FuncName, ':');
|
||||
if (NULL != Name)
|
||||
{
|
||||
*Name = '\0';
|
||||
}
|
||||
memcpy(FuncName, Name, NameLen);
|
||||
FuncName[NameLen] = '\0';
|
||||
Current->FunctionOffset = FindOrAddString(FuncName,
|
||||
StringsLength,
|
||||
StringsBase);
|
||||
|
|
Loading…
Reference in a new issue