Merge pull request #28 from donatello/fix-err-shadow

Fix error variable shadowing
This commit is contained in:
Josh Baker 2019-02-28 13:39:17 -07:00 committed by GitHub
commit 25fb082a20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -116,9 +116,9 @@ func SetBytesOptions(json []byte, path string, value interface{},
var err error
switch v := value.(type) {
default:
b, err := jsongo.Marshal(value)
if err != nil {
return nil, err
b, merr := jsongo.Marshal(value)
if merr != nil {
return nil, merr
}
// raw := *(*string)(unsafe.Pointer(&b))
raw := string(b)

View File

@ -115,9 +115,9 @@ func SetBytesOptions(json []byte, path string, value interface{},
var err error
switch v := value.(type) {
default:
b, err := jsongo.Marshal(value)
if err != nil {
return nil, err
b, merr := jsongo.Marshal(value)
if merr != nil {
return nil, merr
}
raw := *(*string)(unsafe.Pointer(&b))
res, err = set(jstr, path, raw, false, false, optimistic, inplace)