elodina / go-avro

Apache Avro for Golang
http://elodina.github.io/go-avro/
Apache License 2.0
129 stars 55 forks source link

Fix a panic decoding arrays with SpecificDatumReader #75

Closed crast closed 8 years ago

crast commented 8 years ago

The panic occurs if you have a nil-able value (typically a type union) inside an array. This fixes the nil set scenario.

serejja commented 8 years ago

Thanks!