diff options
author | kwolekr <kwolekr@minetest.net> | 2015-07-14 03:22:16 -0400 |
---|---|---|
committer | kwolekr <kwolekr@minetest.net> | 2015-07-14 03:22:16 -0400 |
commit | 515e7028ac5121bc6a5205b12aae731eed630b05 (patch) | |
tree | 4e804f085ad81ef19907630086db01e54c4d57c3 /src/util/serialize.h | |
parent | 5006ce82609b2260f191b132f2dabcfdb06d6e20 (diff) | |
download | minetest-515e7028ac5121bc6a5205b12aae731eed630b05.tar.gz minetest-515e7028ac5121bc6a5205b12aae731eed630b05.tar.bz2 minetest-515e7028ac5121bc6a5205b12aae731eed630b05.zip |
Increase limit of serialized long strings
Diffstat (limited to 'src/util/serialize.h')
-rw-r--r-- | src/util/serialize.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/serialize.h b/src/util/serialize.h index fcba90903..60f25d740 100644 --- a/src/util/serialize.h +++ b/src/util/serialize.h @@ -426,8 +426,8 @@ inline video::SColor readARGB8(std::istream &is) More serialization stuff */ -// 8 MB is a conservative limit. Increase later if problematic. -#define LONG_STRING_MAX (8 * 1024 * 1024) +// 64 MB ought to be enough for anybody - Billy G. +#define LONG_STRING_MAX (64 * 1024 * 1024) // Creates a string with the length as the first two bytes std::string serializeString(const std::string &plain); |