From 791d72e05b2c4fd9c094c022a3b0ab0667c9bbdf Mon Sep 17 00:00:00 2001 From: Dreamacro <305009791@qq.com> Date: Mon, 25 Mar 2019 20:42:20 +0800 Subject: [PATCH] Fix: crash when key value is nil --- common/structure/structure.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/structure/structure.go b/common/structure/structure.go index 9d56b703..8e595a17 100644 --- a/common/structure/structure.go +++ b/common/structure/structure.go @@ -47,11 +47,11 @@ func (d *Decoder) Decode(src map[string]interface{}, dst interface{}) error { } value, ok := src[key] - if !ok { + if !ok || value == nil { if omitempty { continue } - return fmt.Errorf("key %s missing", key) + return fmt.Errorf("key '%s' missing", key) } err := d.decode(key, value, v.Field(idx)) @@ -114,7 +114,7 @@ func (d *Decoder) decodeString(name string, data interface{}, val reflect.Value) val.SetString(strconv.FormatInt(dataVal.Int(), 10)) default: err = fmt.Errorf( - "'%s' expected type'%s', got unconvertible type '%s'", + "'%s' expected type '%s', got unconvertible type '%s'", name, val.Type(), dataVal.Type(), ) } @@ -131,7 +131,7 @@ func (d *Decoder) decodeBool(name string, data interface{}, val reflect.Value) ( val.SetBool(dataVal.Int() != 0) default: err = fmt.Errorf( - "'%s' expected type'%s', got unconvertible type '%s'", + "'%s' expected type '%s', got unconvertible type '%s'", name, val.Type(), dataVal.Type(), ) }