Skip to content

Commit 37cc313

Browse files
committed
fix #274, unescape before base64 decode
1 parent 6c702ce commit 37cc313

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

reflect_native.go

+2-7
Original file line numberDiff line numberDiff line change
@@ -416,16 +416,11 @@ func (codec *base64Codec) Decode(ptr unsafe.Pointer, iter *Iterator) {
416416
}
417417
switch iter.WhatIsNext() {
418418
case StringValue:
419-
encoding := base64.StdEncoding
420-
src := iter.SkipAndReturnBytes()
421-
src = src[1 : len(src)-1]
422-
decodedLen := encoding.DecodedLen(len(src))
423-
dst := make([]byte, decodedLen)
424-
len, err := encoding.Decode(dst, src)
419+
src := iter.ReadString()
420+
dst, err := base64.StdEncoding.DecodeString(src)
425421
if err != nil {
426422
iter.ReportError("decode base64", err.Error())
427423
} else {
428-
dst = dst[:len]
429424
codec.sliceType.UnsafeSet(ptr, unsafe.Pointer(&dst))
430425
}
431426
case ArrayValue:

value_tests/slice_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,8 @@ func init() {
2020
}, unmarshalCase{
2121
ptr: (*[]byte)(nil),
2222
input: `"aGVsbG8="`,
23+
}, unmarshalCase{
24+
ptr: (*[]byte)(nil),
25+
input: `"c3ViamVjdHM\/X2Q9MQ=="`,
2326
})
2427
}

0 commit comments

Comments
 (0)