mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Prevent NRE with instructions with no arguments
This commit is contained in:
@@ -17,6 +17,8 @@ public class InterpreterEntry
|
|||||||
|
|
||||||
if (args != null && args.Length > 0)
|
if (args != null && args.Length > 0)
|
||||||
Arguments = args;
|
Arguments = args;
|
||||||
|
else
|
||||||
|
Arguments = new List<OpCodeArgument>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public OpCode OpCode { get; }
|
public OpCode OpCode { get; }
|
||||||
|
|||||||
Reference in New Issue
Block a user