summaryrefslogtreecommitdiffstats
path: root/tests/utf.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-06-08 12:37:23 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-06-08 12:37:23 (GMT)
commit4276e234955e8ecdc91fd5d2ebee1acbb35753ad (patch)
tree6f8f9a0b6f5343b44398512009be1d975669180a /tests/utf.test
parente3c58bc54a39c2911fb59460045b16c4e61c491c (diff)
parent8cb64e1074f47fa62a4f2461569272a27a57f9d6 (diff)
downloadtcl-4276e234955e8ecdc91fd5d2ebee1acbb35753ad.zip
tcl-4276e234955e8ecdc91fd5d2ebee1acbb35753ad.tar.gz
tcl-4276e234955e8ecdc91fd5d2ebee1acbb35753ad.tar.bz2
Fix [2738427]: Tcl_NumUtfChars(...) no overflow check.
Diffstat (limited to 'tests/utf.test')
-rw-r--r--tests/utf.test6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/utf.test b/tests/utf.test
index f677438..422ab08 100644
--- a/tests/utf.test
+++ b/tests/utf.test
@@ -110,9 +110,13 @@ test utf-4.7 {Tcl_NumUtfChars: long string, calc len} {testnumutfchars testbytes
test utf-4.8 {Tcl_NumUtfChars: #u0000, calc len} {testnumutfchars testbytestring} {
testnumutfchars [testbytestring "\xC0\x80"] 2
} {1}
-test utf-4.9 {Tcl_NumUtfChars: #u20AC, calc len, incomplete} {knownBug testnumutfchars testbytestring} {
+# Bug [2738427]: Tcl_NumUtfChars(...) no overflow check
+test utf-4.9 {Tcl_NumUtfChars: #u20AC, calc len, incomplete} {testnumutfchars testbytestring} {
testnumutfchars [testbytestring "\xE2\x82\xAC"] 2
} {2}
+test utf-4.10 {Tcl_NumUtfChars: #u0000, calc len, overcomplete} {testnumutfchars testbytestring} {
+ testnumutfchars [testbytestring "\x00"] 2
+} {2}
test utf-5.1 {Tcl_UtfFindFirsts} {
} {}