yunify / qingcloud-sdk-go

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

[WIP]fix parseError panic when FieldByName return nil #96

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.