go icon indicating copy to clipboard operation
go copied to clipboard

panic:when nested struct

Open SevenHe opened this issue 4 years ago • 0 comments

type A struct {
  Member *B
}

type B struct {
  NextA map[string]*A
}

Use any A obj, thrifter.Marshal would run out of memory.

SevenHe avatar Jun 15 '21 07:06 SevenHe