mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-3307 Stack strings
This commit is contained in:
parent
9b6ba66aa0
commit
5604178194
37 changed files with 1653 additions and 419 deletions
|
@ -2837,6 +2837,8 @@ void ScopeInternal::setCategory(Symbol *sym,int4 cat,int4 ind)
|
|||
while(category.size() <= sym->category)
|
||||
category.push_back(vector<Symbol *>());
|
||||
vector<Symbol *> &list(category[sym->category]);
|
||||
if (cat > 0)
|
||||
sym->catindex = list.size();
|
||||
while(list.size() <= sym->catindex)
|
||||
list.push_back((Symbol *)0);
|
||||
list[sym->catindex] = sym;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue