diff options
| author | Mason Reed <mason@vector35.com> | 2025-07-02 23:30:07 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-07-03 00:13:59 -0400 |
| commit | eb36a2b19746fdcb849cb14685bb56bd19134166 (patch) | |
| tree | 15e469f95c07274d2f8689eed9babc160fc7370e /binaryninjacore.h | |
| parent | 246f1f72ad2418930ac8837f0788d09a2b24ee6b (diff) | |
Fix TagType objects being leaked when opening tags sidebar
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index b2f02949..114eb191 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -5532,7 +5532,7 @@ extern "C" BINARYNINJACOREAPI size_t BNGetAllTagReferencesOfTypeCount(BNBinaryView* view, BNTagType* tagType); BINARYNINJACOREAPI void BNGetAllTagReferenceTypeCounts( BNBinaryView* view, BNTagType*** tagTypes, size_t** counts, size_t* count); - BINARYNINJACOREAPI void BNFreeTagReferenceTypeCounts(BNTagType** tagTypes, size_t* counts); + BINARYNINJACOREAPI void BNFreeTagReferenceTypeCounts(BNTagType** tagTypes, size_t* counts, size_t count); BINARYNINJACOREAPI BNTagReference* BNGetFunctionAllTagReferences(BNFunction* func, size_t* count); BINARYNINJACOREAPI BNTagReference* BNGetFunctionTagReferencesOfType( |
