From 6fa139f7bf079ff57fab6f0011544924bc9ef506 Mon Sep 17 00:00:00 2001 From: Jari Sundell Date: Fri, 14 Aug 2026 19:27:04 +0900 Subject: [PATCH] Reduce max_string_pad_size from 1<<20 to 1<<14 --- src/command_string.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command_string.cc b/src/command_string.cc index 30d38a0c..270101f7 100644 --- a/src/command_string.cc +++ b/src/command_string.cc @@ -19,7 +19,7 @@ namespace { -constexpr int64_t max_string_pad_size = 1 << 20; +constexpr int64_t max_string_pad_size = 1 << 14; const std::string whitespace_characters = " \t\n\r\f\v";