From b8263d25296caeddb0ac80c5a5ac78d2cdaec23f Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 22 Sep 2022 21:17:51 +0200 Subject: [PATCH] Fixed #1159 (valgrind error) --- src/tl/tl/tlString.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tl/tl/tlString.cc b/src/tl/tl/tlString.cc index 178020c61..bb2a14dad 100644 --- a/src/tl/tl/tlString.cc +++ b/src/tl/tl/tlString.cc @@ -256,7 +256,7 @@ std::string to_lower_case (const std::string &s) std::string to_local (const std::string &s) { - std::unique_ptr buffer (new char [MB_CUR_MAX]); // MB_CUR_MAX isn't a constant + std::unique_ptr buffer (new char [MB_CUR_MAX]); // MB_CUR_MAX isn't a constant std::string ls; std::wstring ws = to_wstring (s);