From 48327314772a2e74ec113945a6549e0a4ebe7736 Mon Sep 17 00:00:00 2001 From: George Marques Date: Wed, 4 May 2016 11:46:28 -0300 Subject: [PATCH] Fix memory leak As pointed out by @sanikoyes in #4541. (cherry picked from commit 5930408746fab692aaf277ec7b6482e7055f3344) --- tools/doc/doc_data.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/doc/doc_data.cpp b/tools/doc/doc_data.cpp index 437af7f1db0..919752b71b4 100644 --- a/tools/doc/doc_data.cpp +++ b/tools/doc/doc_data.cpp @@ -64,7 +64,8 @@ void DocData::merge_from(const DocData& p_data) { // since polymorphic functions are allowed we need to check the type of // the arguments so we make sure they are different. int arg_count = cf.methods[j].arguments.size(); - bool* arg_used = new bool[arg_count]; + Vector arg_used; + arg_used.resize(arg_count); for (int l = 0; l < arg_count; ++l) arg_used[l] = false; // also there is no guarantee that argument ordering will match, so we // have to check one by one so we make sure we have an exact match