From 0a89498f51c74df12abe2fdca4325613582f2664 Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Fri, 31 Jul 2020 21:52:48 +0300 Subject: Fix heap use after free in the doctest "main". --- tests/test_main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_main.cpp b/tests/test_main.cpp index 0d83c3ced3..b62ff60538 100644 --- a/tests/test_main.cpp +++ b/tests/test_main.cpp @@ -69,7 +69,8 @@ int test_main(int argc, char *argv[]) { char **args = new char *[valid_arguments.size()]; for (int x = 0; x < valid_arguments.size(); x++) { // Operation to convert Godot string to non wchar string. - const char *str = valid_arguments[x].utf8().ptr(); + CharString cs = valid_arguments[x].utf8(); + const char *str = cs.get_data(); // Allocate the string copy. args[x] = new char[strlen(str) + 1]; // Copy this into memory. -- cgit v1.2.3