From e07d7c179d2e7a26b92fd713b132e4949df34f58 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Thu, 16 May 2024 14:45:24 -0400 Subject: Fix crash when searching Collaboration Groups --- collaboration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'collaboration.cpp') diff --git a/collaboration.cpp b/collaboration.cpp index 3361890b..7b0057c3 100644 --- a/collaboration.cpp +++ b/collaboration.cpp @@ -849,7 +849,7 @@ std::vector> Remote::SearchGroups(const std::st results.push_back({ids[i], names[i]}); } - delete ids; + delete[] ids; BNFreeStringList(names, count); return results; -- cgit v1.3.1