Fix decoding of overencoded booleans. if the value was >32bit with the low bits all being zero, it was decoded as false instead of as true. Fixes #6863
diff --git a/objectivec/GPBCodedInputStream.m b/objectivec/GPBCodedInputStream.m index 4c8d640..1864d91 100644 --- a/objectivec/GPBCodedInputStream.m +++ b/objectivec/GPBCodedInputStream.m
@@ -203,7 +203,7 @@ } BOOL GPBCodedInputStreamReadBool(GPBCodedInputStreamState *state) { - return ReadRawVarint32(state) != 0; + return ReadRawVarint64(state) != 0; } int32_t GPBCodedInputStreamReadTag(GPBCodedInputStreamState *state) {