Fixed NPE due to unintialized handleMap

This commit is contained in:
Andrew Strelsky 2022-07-02 10:34:06 -04:00 committed by Ryan Kurtz
parent 8f82359a8f
commit 67ba64c764

View file

@ -86,6 +86,7 @@ public class SleighParserContext implements ParserContext {
nextInstrAddr = nAddr;
refAddr = rAddr;
destAddr = dAddr;
handleMap = new HashMap<>();
}
/**