From 6a1bc6dc4f5169866fb0cfc19ce2bc70aa1d8bcd Mon Sep 17 00:00:00 2001 From: Sergey Yakubov <sergey.yakubov@desy.de> Date: Sat, 5 Jun 2021 13:02:02 +0200 Subject: [PATCH] exclude mongodb from coverage --- common/cpp/src/database/encoding.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/cpp/src/database/encoding.cpp b/common/cpp/src/database/encoding.cpp index 76c41e36b..29a419752 100644 --- a/common/cpp/src/database/encoding.cpp +++ b/common/cpp/src/database/encoding.cpp @@ -84,9 +84,9 @@ std::string EncodeColName(const std::string &colname) { } std::string DecodeName(const std::string &name) { - char *decoded = (char*) malloc(name.size()*sizeof(char)); - auto res = decode(name.c_str(), decoded); - return res >= 0 ? decoded : ""; + std::unique_ptr<char>decoded{new char(name.size())}; + auto res = decode(name.c_str(), decoded.get()); + return res >= 0 ? decoded.get() : ""; } bool ShouldEscapeQuery(char c) { -- GitLab