Closed fgrzadkowski closed 9 years ago
method jsonU4 has a bug here: https://github.com/ugorji/go/blob/master/codec/json.go#L806
It should be: u = u*16 + uint32(v)
This method parses base 16 numbers, not decimal.
method jsonU4 has a bug here: https://github.com/ugorji/go/blob/master/codec/json.go#L806
It should be: u = u*16 + uint32(v)
This method parses base 16 numbers, not decimal.