diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-05-06 17:40:14 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-05-12 14:09:02 -0400 |
| commit | 2292442768637470957078702083503652545015 (patch) | |
| tree | 74d6bc28db43501600754c09a8b5f02cf1b5e547 /lowlevelil.cpp | |
| parent | 6776619888981356136774873531191519350054 (diff) | |
Fix leak in LowLevelILFunction::AddLabelMap
Diffstat (limited to 'lowlevelil.cpp')
| -rw-r--r-- | lowlevelil.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lowlevelil.cpp b/lowlevelil.cpp index 31401b8f..239abed0 100644 --- a/lowlevelil.cpp +++ b/lowlevelil.cpp @@ -389,6 +389,7 @@ ExprId LowLevelILFunction::AddLabelMap(const map<uint64_t, BNLowLevelILLabel*>& i++; } ExprId result = (ExprId)BNLowLevelILAddLabelMap(m_object, valueList, labelList, labels.size()); + delete[] valueList; delete[] labelList; return result; } |
