Bump matter registry limit to 64 MiB

This commit is contained in:
DBotThePony 2025-02-12 15:53:06 +07:00
parent 6acee0de08
commit f214682074
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -1828,7 +1828,7 @@ object MatterManager {
} else {
spliced.writeBytes(buffer, 0, inflated)
if (spliced.writerIndex() >= 1 shl 24 /* 16 MiB */) {
if (spliced.writerIndex() >= 1 shl 26 /* 64 MiB */) {
throw IndexOutOfBoundsException("Pipe Bomb")
}
}