qitab / cl-protobufs

Common Lisp protocol buffer implementation.
MIT License
84 stars 18 forks source link

Fix text format lazy bug #158

Closed bkuehnert closed 4 years ago

bkuehnert commented 4 years ago

This code was lazily copied from the serializer code, in which we want to hold off from deserializing lazy fields when serializing. Since we are printing to text, we actually need to deserialize. So, this check for lazy fields is bad.

bkuehnert commented 4 years ago

Closing. #157 fixes the bug