non-pointer-unmarshal
Default severity: error
JSON and XML decoding APIs require a pointer destination so they can populate the supplied value.
json.Unmarshal(data, value)json.Unmarshal(data, &value)Default severity: error
JSON and XML decoding APIs require a pointer destination so they can populate the supplied value.
json.Unmarshal(data, value)json.Unmarshal(data, &value)