Handle 0-length byte buffers in micro and nano protobufs
Change-Id: I845ee1ab1005d25c8d77a8c2ed801c0f7b7c847b
This commit is contained in:
parent
16a283f794
commit
15bff99de6
1 changed files with 2 additions and 0 deletions
|
@ -236,6 +236,8 @@ public final class CodedInputByteBufferNano {
|
|||
System.arraycopy(buffer, bufferPos, result, 0, size);
|
||||
bufferPos += size;
|
||||
return result;
|
||||
} else if (size == 0) {
|
||||
return WireFormatNano.EMPTY_BYTES;
|
||||
} else {
|
||||
// Slow path: Build a byte array first then copy it.
|
||||
return readRawBytes(size);
|
||||
|
|
Loading…
Add table
Reference in a new issue