Skip to content

Commit 9f088cb

Browse files
committed
fix #195 when decode float as int, report it clearly
1 parent 3c0e576 commit 9f088cb

4 files changed

+19
-3
lines changed

feature_iter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func (iter *Iterator) isObjectEnd() bool {
168168
if c == '}' {
169169
return true
170170
}
171-
iter.ReportError("isObjectEnd", "object ended prematurely, unexpected char " + string([]byte{c}))
171+
iter.ReportError("isObjectEnd", "object ended prematurely, unexpected char "+string([]byte{c}))
172172
return true
173173
}
174174

feature_iter_int.go

+10
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@ func (iter *Iterator) ReadUint32() (ret uint32) {
113113
}
114114

115115
func (iter *Iterator) readUint32(c byte) (ret uint32) {
116+
defer func() {
117+
if iter.buf[iter.head] == '.' {
118+
iter.ReportError("readUint32", "can not decode float as int")
119+
}
120+
}()
116121
ind := intDigits[c]
117122
if ind == 0 {
118123
return 0 // single zero
@@ -224,6 +229,11 @@ func (iter *Iterator) ReadUint64() uint64 {
224229
}
225230

226231
func (iter *Iterator) readUint64(c byte) (ret uint64) {
232+
defer func() {
233+
if iter.buf[iter.head] == '.' {
234+
iter.ReportError("readUint64", "can not decode float as int")
235+
}
236+
}()
227237
ind := intDigits[c]
228238
if ind == 0 {
229239
return 0 // single zero

jsoniter_int_test.go

+6
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,12 @@ func Test_null_as_number(t *testing.T) {
530530
should.Equal("", string(v2))
531531
}
532532

533+
func Test_float_as_int(t *testing.T) {
534+
should := require.New(t)
535+
var i int
536+
should.NotNil(Unmarshal([]byte(`1.1`), &i))
537+
}
538+
533539
func Benchmark_jsoniter_encode_int(b *testing.B) {
534540
stream := NewStream(ConfigDefault, ioutil.Discard, 64)
535541
for n := 0; n < b.N; n++ {

jsoniter_interface_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ import (
1313
func Test_write_empty_interface_via_placeholder(t *testing.T) {
1414
fmt.Println(^uint(0) >> 1)
1515
should := require.New(t)
16-
m := map[uint32]interface{}{1:"hello"}
16+
m := map[uint32]interface{}{1: "hello"}
1717
inf := reflect.ValueOf(m).MapIndex(reflect.ValueOf(uint32(1))).Interface()
1818
encoder := &placeholderEncoder{
19-
cfg: ConfigFastest.(*frozenConfig),
19+
cfg: ConfigFastest.(*frozenConfig),
2020
cacheKey: reflect.TypeOf(m).Elem(),
2121
}
2222
stream := ConfigFastest.BorrowStream(nil)

0 commit comments

Comments
 (0)