summaryrefslogtreecommitdiffstats
path: root/generic/tclParse.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclParse.c')
-rw-r--r--generic/tclParse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclParse.c b/generic/tclParse.c
index 3bc6722..dbffed0 100644
--- a/generic/tclParse.c
+++ b/generic/tclParse.c
@@ -734,7 +734,7 @@ TclParseHex(
while (numBytes--) {
unsigned char digit = UCHAR(*p);
- if (!isxdigit(digit) || (result > 0x10fff)) {
+ if (!isxdigit(digit) || (result > 0x10FFF)) {
break;
}