1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-07-06 22:35:51 +02:00

Merge pull request #4 from crackcomm/master

Fixes nil pointer dereference error
This commit is contained in:
Asim
2015-01-30 17:34:30 +00:00

View File

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