From acb355e5b79dba109aff1b12317d0067475d3eeb Mon Sep 17 00:00:00 2001 From: Altug Keyder <7550161+akeyder@users.noreply.github.com> Date: Tue, 11 Jul 2023 17:14:26 +0300 Subject: [PATCH] (#137) increase tinypack decoder MaxVariadicLength --- tinypack/decoder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinypack/decoder.go b/tinypack/decoder.go index 7e27b40..da73bab 100644 --- a/tinypack/decoder.go +++ b/tinypack/decoder.go @@ -16,7 +16,7 @@ type Decoder struct { func DefaultDecoder() *Decoder { return &Decoder{ - MaxVariadicLength: 1_000_000, + MaxVariadicLength: 10_000_000, } }