summaryrefslogtreecommitdiffstats
path: root/utf8.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-02-02 16:35:32 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-02-02 16:35:32 -0800
commit97a34f6e5b04d4ce2eb3ee63f42d1375f4939de3 (patch)
tree4d2ed48b418f06c47a73a67a82895fcabef62ef8 /utf8.h
parentc4dd3aaa204cd70e03d4cec3531c64be9a24f649 (diff)
downloadtxr-97a34f6e5b04d4ce2eb3ee63f42d1375f4939de3.tar.gz
txr-97a34f6e5b04d4ce2eb3ee63f42d1375f4939de3.tar.bz2
txr-97a34f6e5b04d4ce2eb3ee63f42d1375f4939de3.zip
* utf8.c (utf8_from_uc, utf8_decode): Impose a minium value on the
decoded character based on which UTF-8 case it is from. This rejects overlong forms. * utf8.h (struct utf8_decoder): New member, wch_min.
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.h b/utf8.h
index 2f1365e6..fbb993f1 100644
--- a/utf8.h
+++ b/utf8.h
@@ -37,7 +37,7 @@ enum utf8_state { utf8_init, utf8_more1, utf8_more2, utf8_more3 };
typedef struct utf8_decoder {
enum utf8_state state;
- wchar_t wch;
+ wchar_t wch, wch_min;
int head, tail, back;
int buf[8];
} utf8_decoder_t;