yunify / qingcloud-sdk-go

The official QingCloud SDK for the Go programming language.
Apache License 2.0
29 stars 42 forks source link

Fix unpack http request panic #97

Closed cygnushan closed 6 years ago

cygnushan commented 6 years ago

Fix issues95

When retCodeValue := u.output.Elem().FieldByName("RetCode") return nil, The retCodeValue.IsValid() still return True, Which will cause retCodeValue.Elem().Int() panic because the kind of retCodeValue.Elem() is struct when retCodeValue is nil.

huyujie commented 6 years ago

lgtm.