mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-25 05:32:14 +00:00
Merge remote-tracking branch 'origin/GP-3986_emteere_PcodeopParamLimit' into patch
This commit is contained in:
commit
76ae3b0748
@ -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…
Reference in New Issue
Block a user