commit | bd6b288f21d57046da0a6871f81122cc06e7a79f | [log] [tgz] |
---|---|---|
author | David K. Bainbridge <dbainbri@ciena.com> | Thu Aug 26 13:31:02 2021 +0000 |
committer | David K. Bainbridge <dbainbri@ciena.com> | Tue Oct 05 11:43:29 2021 +0000 |
tree | 89d5eb1fe020c420fe887b21f6bf1d757b132ee1 | |
parent | dfc43facf88a08f53c0e06a31fd771a8874d905a [diff] [blame] |
gRPC migration update Change-Id: Icdd1a824948fa994cd36bd121c962f5ecf74e3cf
diff --git a/vendor/github.com/gogo/protobuf/proto/encode.go b/vendor/github.com/gogo/protobuf/proto/encode.go index 3abfed2..9581ccd 100644 --- a/vendor/github.com/gogo/protobuf/proto/encode.go +++ b/vendor/github.com/gogo/protobuf/proto/encode.go
@@ -189,6 +189,8 @@ // prefixed by a varint-encoded length. func (p *Buffer) EncodeMessage(pb Message) error { siz := Size(pb) + sizVar := SizeVarint(uint64(siz)) + p.grow(siz + sizVar) p.EncodeVarint(uint64(siz)) return p.Marshal(pb) }