diff options
author | Omar Polo <op@omarpolo.com> | 2021-10-18 10:05:55 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-10-18 10:05:55 +0000 |
commit | 4842c72d9f3f45478cb641e15a3272e541fb8a18 (patch) | |
tree | 1a1b840362a8e78f6a71c67bce0d7157e0848cb5 /utf8.c | |
parent | f8bcc13822154d8558246c9f994cf43c413a5714 (diff) |
fmt
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ valid_multibyte_utf8(struct parser *p) { uint32_t cp = 0, state = 0; - for (; *p->iri; p->iri++) + for (; *p->iri; p->iri++) if (!utf8_decode(&state, &cp, *p->iri)) break; |