Bug fix: When encoding, negative int32 values should be padded to int64 in order to be wire compatible

pull/13171/head
Bo Yang 8 years ago
parent 73a48a46f8
commit 0168f28daf
  1. 2
      upb/pb/encoder.c

@ -411,7 +411,7 @@ static size_t encode_strbuf(void *c, const void *hd, const char *buf,
T(double, double, dbl2uint64, encode_fixed64) T(double, double, dbl2uint64, encode_fixed64)
T(float, float, flt2uint32, encode_fixed32) T(float, float, flt2uint32, encode_fixed32)
T(int64, int64_t, uint64_t, encode_varint) T(int64, int64_t, uint64_t, encode_varint)
T(int32, int32_t, uint32_t, encode_varint) T(int32, int32_t, int64_t, encode_varint)
T(fixed64, uint64_t, uint64_t, encode_fixed64) T(fixed64, uint64_t, uint64_t, encode_fixed64)
T(fixed32, uint32_t, uint32_t, encode_fixed32) T(fixed32, uint32_t, uint32_t, encode_fixed32)
T(bool, bool, bool, encode_varint) T(bool, bool, bool, encode_varint)

Loading…
Cancel
Save