mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-08 00:17:21 +00:00
Boosted the max recrusion limit for saving config files from 100 to 1000.
This commit is contained in:
parent
698db11af7
commit
7b50823982
@ -53,7 +53,7 @@ static const unsigned int
|
||||
compress_first_word = 4, compress_end_words = 256;
|
||||
static const size_t compress_max_words = compress_end_words - compress_first_word;
|
||||
static const size_t max_schema_item_length = 20;
|
||||
static const int max_recursion_levels = 100;
|
||||
static const int max_recursion_levels = 1000;
|
||||
|
||||
static void compress_output_literal_word(std::ostream &out, std::string const &word)
|
||||
{
|
||||
|
@ -36,7 +36,7 @@
|
||||
#define WRN_CF LOG_STREAM(warn, config)
|
||||
#define LOG_CF LOG_STREAM(info, config)
|
||||
|
||||
static const size_t max_recursion_levels = 100;
|
||||
static const size_t max_recursion_levels = 1000;
|
||||
|
||||
namespace {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user