MiNG

Results 11 issues of MiNG

See the code in any_object.go ```go func (any *objectLazyAny) ToVal(obj interface{}) { iter := any.cfg.BorrowIterator(any.buf) defer any.cfg.ReturnIterator(iter) iter.ReadVal(obj) } ``` When `iter.ReadVal(obj)` failed, the error did not propagate to the...