aboutsummaryrefslogtreecommitdiffhomepage
path: root/php/ext/google/protobuf/utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'php/ext/google/protobuf/utf8.c')
-rw-r--r--php/ext/google/protobuf/utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/php/ext/google/protobuf/utf8.c b/php/ext/google/protobuf/utf8.c
index a1541636..2752a08b 100644
--- a/php/ext/google/protobuf/utf8.c
+++ b/php/ext/google/protobuf/utf8.c
@@ -58,7 +58,7 @@ bool is_structurally_valid_utf8(const char* buf, int len) {
return false;
}
for (j = i + 1; j < i + offset; j++) {
- if (buf[j] & 0xc0 != 0x80) {
+ if ((buf[j] & 0xc0) != 0x80) {
return false;
}
}