Fixes nil pointer dereference error

Cannot unmarshal into nil struct
This commit is contained in:
Łukasz Kurowski 2015-01-30 15:51:16 +01:00
parent 4a4bdcb83b
commit 35fd6796b1

View File

@ -27,8 +27,8 @@ func New(id, detail string, code int32) error {
}
func Parse(err string) *Error {
var e *Error
errr := json.Unmarshal([]byte(err), &e)
e := new(Error)
errr := json.Unmarshal([]byte(err), e)
if errr != nil {
e.Detail = err
}