diff options
| author | Mark Rowe <mark@vector35.com> | 2026-05-11 18:49:26 -0700 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2026-05-19 10:36:46 -0700 |
| commit | fd40266f767e51e649fb48376e25f47a60d79765 (patch) | |
| tree | db351a36617200d4ad659bb3c1aa921b8d08f204 /binaryninjaapi.h | |
| parent | 297a98bff289ecde90d808f6538c2c5edf804af6 (diff) | |
Fix incorrect reference counting in C++ API
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 249d5ae6..158b1a21 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -12069,6 +12069,7 @@ namespace BinaryNinja { Ref<BinaryView> m_view; Ref<Function> m_function; + std::string PostRawRequest(const char* request); bool PostRequest(const std::string& command); public: @@ -21276,7 +21277,6 @@ namespace BinaryNinja { { public: FirmwareNinjaReferenceNode(BNFirmwareNinjaReferenceNode* node); - ~FirmwareNinjaReferenceNode(); /*! Returns true if the reference tree node contains a function |
