Fix a NULL/bool conversion.

This commit is contained in:
liujisi@google.com 2012-05-17 04:59:53 +00:00
parent 2072421124
commit aabd7cf8f8

View file

@ -452,7 +452,7 @@ bool CodedInputStream::ReadVarint64Fallback(uint64* value) {
// We have overrun the maximum size of a varint (10 bytes). The data
// must be corrupt.
return NULL;
return false;
done:
Advance(ptr - buffer_);