From 40dc6d15d4c8aac2f9b9f6c93d3a6df1a0c62ddb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20K=C3=A4ll=C3=A9n?= Date: Mon, 30 May 2016 21:00:38 +0200 Subject: [PATCH] Add JumpTables collection to oracular data (#213) --- src/Core/UserData.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Core/UserData.cs b/src/Core/UserData.cs index c3dd99d284..8b9f7aacf8 100644 --- a/src/Core/UserData.cs +++ b/src/Core/UserData.cs @@ -37,6 +37,7 @@ public UserData() this.Calls = new SortedList(); this.Globals = new SortedList(); this.Heuristics = new SortedSet(); + this.JumpTables = new SortedList(); this.Annotations = new List(); this.TextEncoding = Encoding.ASCII; } @@ -48,6 +49,7 @@ public UserData() public SortedList Procedures { get; set; } public SortedList Calls { get; set; } public SortedList Globals { get; set; } + public SortedList JumpTables { get; set; } public List Annotations { get; set; } ///