summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadDl.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-03-30 22:27:40 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-03-30 22:27:40 (GMT)
commit0758324455f7cd805291c1062b6c7fb70fd13647 (patch)
treed71c67987bcd3070c793c82e843fd8aedc8032ca /unix/tclLoadDl.c
parent812c3e3103658db7d4e360b9203097c339a3a204 (diff)
parentfeac96c8b3c738ef7cb8e3e89e076aa4f23f13b0 (diff)
downloadtcl-0758324455f7cd805291c1062b6c7fb70fd13647.zip
tcl-0758324455f7cd805291c1062b6c7fb70fd13647.tar.gz
tcl-0758324455f7cd805291c1062b6c7fb70fd13647.tar.bz2
Merge 9.0
Diffstat (limited to 'unix/tclLoadDl.c')
-rw-r--r--unix/tclLoadDl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c
index dd6c50e..0913698 100644
--- a/unix/tclLoadDl.c
+++ b/unix/tclLoadDl.c
@@ -191,7 +191,7 @@ FindSymbol(
#ifdef __cplusplus
if (proc == NULL) {
char buf[32];
- sprintf(buf, "%d", (int)Tcl_DStringLength(&ds));
+ snprintf(buf, sizeof(buf), "%d", (int)Tcl_DStringLength(&ds));
Tcl_DStringInit(&newName);
TclDStringAppendLiteral(&newName, "__Z");
Tcl_DStringAppend(&newName, buf, TCL_INDEX_NONE);