Commit aabd7cf8 authored by liujisi@google.com's avatar liujisi@google.com

Fix a NULL/bool conversion.

parent 20724211
......@@ -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_);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment