mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-3986 Minor fix for pcodeops with more than eight params
This commit is contained in:
parent
6b734cba46
commit
dad9fd466d
1 changed files with 4 additions and 0 deletions
|
@ -504,6 +504,10 @@ public abstract class PcodeEmit {
|
|||
VarnodeData[] dyncache = null;
|
||||
VarnodeTpl vn, outvn;
|
||||
int isize = opt.getInput().length;
|
||||
|
||||
if (isize > incache.length) {
|
||||
incache = new VarnodeData[isize];
|
||||
}
|
||||
|
||||
// First build all the inputs
|
||||
for (int i = 0; i < isize; ++i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue