Skip to content

Commit

Permalink
fix: to care about the case of OpInterfacePtr
Browse files Browse the repository at this point in the history
  • Loading branch information
orisano committed Apr 21, 2022
1 parent 171d975 commit 6db1acf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions decode_test.go
Expand Up @@ -3918,3 +3918,16 @@ func TestIssue360(t *testing.T) {
t.Errorf("unexpected result: %v", uints)
}
}

func TestIssue359(t *testing.T) {
var a interface{} = 1
var b interface{} = &a
var c interface{} = &b
v, err := json.Marshal(c)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
if string(v) != "1" {
t.Errorf("unexpected result: %v", string(v))
}
}
2 changes: 1 addition & 1 deletion internal/encoder/opcode.go
Expand Up @@ -363,7 +363,7 @@ func copyOpcode(code *Opcode) *Opcode {

func setTotalLengthToInterfaceOp(code *Opcode) {
for c := code; !c.IsEnd(); {
if c.Op == OpInterface {
if c.Op == OpInterface || c.Op == OpInterfacePtr {
c.Length = uint32(code.TotalLength())
}
c = c.IterNext()
Expand Down

0 comments on commit 6db1acf

Please sign in to comment.