Merge pull request #345 from brianduff/update_aosp_again

Handle 0-length byte buffers in micro and nano protobufs
This commit is contained in:
Jisi Liu 2015-05-07 13:13:10 -07:00
commit 699db2d51a

View file

@ -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);