commit | 0c034465f31d891782ad443c49edd6556554c71e | [log] [tgz] |
---|---|---|
author | Todd Wang <toddw@google.com> | Wed May 27 18:05:28 2015 -0700 |
committer | Todd Wang <toddw@google.com> | Wed May 27 18:05:28 2015 -0700 |
tree | 80ab62f9a97d2abd648d825d07b545a933eae345 | |
parent | b20e5c7c3b7dd3a88fdb55e6cbdf05b5ea701dcc [diff] |
ref: Fix bug in vom zero-struct-field encoding. This bug was reported by Adam Sadovsky. The bug occurs with the following example. type X struct { A any } The buggy code encodes X{false} the same as X{nil} - in general any value of the A field that is the zero value for its type is dropped. That's just wrong. The fix is in the encoder.canIgnoreField logic. In addition I noticed that we'd inadvertantly exposed too many methods from vom.Encoder. I've fixed that as well. Change-Id: I7c23e3936e168de92e1cf9b2d2d6de7bdb909c4e MultiPart: 2/3
This repository contains a reference implementation of the Vanadium APIs.
Unlike the APIs in https://github.com/vanadium/go.v23, which promises to provide backward compatibility this repository makes no such promises.