summaryrefslogtreecommitdiffstats
path: root/generic/tkSelect.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-08-31 08:55:32 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-08-31 08:55:32 (GMT)
commit424428fd6bc5205a89e05a7c3ce3ae1abb58e9f7 (patch)
treeb89107a81aaee65f22938a9b9f99531a9877eefd /generic/tkSelect.c
parent3b59770739821e36c3f5557ecfaae082b66f4322 (diff)
parentea6b35b21034a7ccfb568ab20f1c850b5619b8a7 (diff)
downloadtk-424428fd6bc5205a89e05a7c3ce3ae1abb58e9f7.zip
tk-424428fd6bc5205a89e05a7c3ce3ae1abb58e9f7.tar.gz
tk-424428fd6bc5205a89e05a7c3ce3ae1abb58e9f7.tar.bz2
Fix use of XMaxTransChars in stead of TCL_UTF_MAX in some places. This should prevent possible buffer overflow when TCL_UTF_MAX=6
Micro-optimizations in tkEntry and ttkEntry
Diffstat (limited to 'generic/tkSelect.c')
-rw-r--r--generic/tkSelect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkSelect.c b/generic/tkSelect.c
index ab9018a..74b3964 100644
--- a/generic/tkSelect.c
+++ b/generic/tkSelect.c
@@ -26,7 +26,7 @@ typedef struct {
int charOffset; /* The offset of the next char to retrieve. */
int byteOffset; /* The expected byte offset of the next
* chunk. */
- char buffer[TCL_UTF_MAX]; /* A buffer to hold part of a UTF character
+ char buffer[4]; /* A buffer to hold part of a UTF character
* that is split across chunks. */
char command[1]; /* Command to invoke. Actual space is
* allocated as large as necessary. This must