diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-05-16 14:45:24 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-05-16 14:46:03 -0400 |
| commit | e07d7c179d2e7a26b92fd713b132e4949df34f58 (patch) | |
| tree | f02b876d3649b049c36c86b002d018cebc097932 /collaboration.cpp | |
| parent | c0eb25ad38452fb6262cb9ccc1587937b0eb33aa (diff) | |
Fix crash when searching Collaboration Groups
Diffstat (limited to 'collaboration.cpp')
| -rw-r--r-- | collaboration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/collaboration.cpp b/collaboration.cpp index 3361890b..7b0057c3 100644 --- a/collaboration.cpp +++ b/collaboration.cpp @@ -849,7 +849,7 @@ std::vector<std::pair<uint64_t, std::string>> Remote::SearchGroups(const std::st results.push_back({ids[i], names[i]}); } - delete ids; + delete[] ids; BNFreeStringList(names, count); return results; |
