fix nil buf check
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
parent
ff29bac9f3
commit
67dbbd03ee
6
toml.go
6
toml.go
@ -30,7 +30,7 @@ func (c *tomlCodec) Marshal(b interface{}) ([]byte, error) {
|
||||
}
|
||||
|
||||
func (c *tomlCodec) Unmarshal(b []byte, v interface{}) error {
|
||||
if b == nil {
|
||||
if len(b) == 0 {
|
||||
return nil
|
||||
}
|
||||
switch m := v.(type) {
|
||||
@ -56,6 +56,8 @@ func (c *tomlCodec) ReadBody(conn io.Reader, b interface{}) error {
|
||||
buf, err := ioutil.ReadAll(conn)
|
||||
if err != nil {
|
||||
return err
|
||||
} else if len(buf) {
|
||||
return nil
|
||||
}
|
||||
m.Data = buf
|
||||
return nil
|
||||
@ -64,7 +66,7 @@ func (c *tomlCodec) ReadBody(conn io.Reader, b interface{}) error {
|
||||
buf, err := ioutil.ReadAll(conn)
|
||||
if err != nil {
|
||||
return err
|
||||
} else if buf == nil {
|
||||
} else if len(buf) == 0 {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user