Skip to content
Snippets Groups Projects
Commit 25210ac1 authored by Petteri Aimonen's avatar Petteri Aimonen
Browse files

Fix message length calculation for arrays of size 1 (issue #253)

parent d56c4cc7
No related branches found
No related tags found
No related merge requests found
......@@ -649,9 +649,14 @@ class Field:
if self.rules == 'REPEATED':
# Decoders must be always able to handle unpacked arrays.
# Therefore we have to reserve space for it, even though
# we emit packed arrays ourselves.
# we emit packed arrays ourselves. For length of 1, packed
# arrays are larger however so we need to add allowance
# for the length byte.
encsize *= self.max_count
if self.max_count == 1:
encsize += 1
return encsize
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment