forked from TrueCloudLab/neoneo-go
stackitem: don't overwrite error when serializing Item
We must get out as quickly as possible.
This commit is contained in:
parent
e34fa2e915
commit
1b7b7e4bec
1 changed files with 3 additions and 0 deletions
|
@ -39,6 +39,9 @@ func EncodeBinaryStackItemAppExec(item Item, w *io.BinWriter) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func serializeItemTo(item Item, w *io.BinWriter, allowInvalid bool, seen map[Item]bool) {
|
func serializeItemTo(item Item, w *io.BinWriter, allowInvalid bool, seen map[Item]bool) {
|
||||||
|
if w.Err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
if seen[item] {
|
if seen[item] {
|
||||||
w.Err = errors.New("recursive structures can't be serialized")
|
w.Err = errors.New("recursive structures can't be serialized")
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue