From 182b4eea73881c611a0f519576aa6ad2aa6799c2 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Sat, 27 Nov 2021 15:26:58 +0100 Subject: Update dependencies (#333) --- vendor/github.com/vmihailenco/msgpack/v5/decode.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'vendor/github.com/vmihailenco/msgpack/v5/decode.go') diff --git a/vendor/github.com/vmihailenco/msgpack/v5/decode.go b/vendor/github.com/vmihailenco/msgpack/v5/decode.go index 46617c86f..5df40e5d9 100644 --- a/vendor/github.com/vmihailenco/msgpack/v5/decode.go +++ b/vendor/github.com/vmihailenco/msgpack/v5/decode.go @@ -341,6 +341,9 @@ func (d *Decoder) DecodeBool() (bool, error) { } func (d *Decoder) bool(c byte) (bool, error) { + if c == msgpcode.Nil { + return false, nil + } if c == msgpcode.False { return false, nil } -- cgit v1.2.3