From e868bf48ee389b9e3540632c89d9f6f4fda47b21 Mon Sep 17 00:00:00 2001 From: crusader Date: Fri, 3 Nov 2017 16:58:40 +0900 Subject: [PATCH] ing --- protocol/json/client_notify.go | 2 +- protocol/json/server.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol/json/client_notify.go b/protocol/json/client_notify.go index d5ea9aa..0a90db3 100644 --- a/protocol/json/client_notify.go +++ b/protocol/json/client_notify.go @@ -51,7 +51,7 @@ func (ccn *ClientCodecNotify) ReadParams(args []interface{}) error { if ccn.err == nil && ccn.notify.Params != nil { // Note: if scr.request.Params is nil it's not an error, it's an optional member. // JSON params structured object. Unmarshal to the args object. - if err := json.Unmarshal(*ccn.notify.Params, args); err != nil { + if err := json.Unmarshal(*ccn.notify.Params, &args); err != nil { ccn.err = &Error{ Code: E_INVALID_REQ, Message: err.Error(), diff --git a/protocol/json/server.go b/protocol/json/server.go index bf0f729..878122e 100644 --- a/protocol/json/server.go +++ b/protocol/json/server.go @@ -164,7 +164,7 @@ func (scr *ServerCodecRequest) ReadParams(args []interface{}) error { if scr.err == nil && scr.request.Params != nil { // Note: if scr.request.Params is nil it's not an error, it's an optional member. // JSON params structured object. Unmarshal to the args object. - if err := json.Unmarshal(*scr.request.Params, args); err != nil { + if err := json.Unmarshal(*scr.request.Params, &args); err != nil { // Clearly JSON params is not a structured object, // fallback and attempt an unmarshal with JSON params as // array value and RPC params is struct. Unmarshal into