summaryrefslogtreecommitdiffstats
path: root/generic/tclEncoding.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclEncoding.c')
-rw-r--r--generic/tclEncoding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c
index fc2835d..41a84db 100644
--- a/generic/tclEncoding.c
+++ b/generic/tclEncoding.c
@@ -1333,7 +1333,7 @@ Tcl_ExternalToUtfDStringEx(
/* Caller wants error message on failure */
if (result != TCL_OK && interp != NULL) {
char buf[TCL_INTEGER_SPACE];
- sprintf(buf, "%u", nBytesProcessed);
+ snprintf(buf, sizeof(buf), "%u", nBytesProcessed);
Tcl_SetObjResult(
interp,
Tcl_ObjPrintf("unexpected byte sequence starting at index %"
@@ -1634,7 +1634,7 @@ Tcl_UtfToExternalDStringEx(
int ucs4;
char buf[TCL_INTEGER_SPACE];
TclUtfToUCS4(&srcStart[nBytesProcessed], &ucs4);
- sprintf(buf, "%u", nBytesProcessed);
+ snprintf(buf, sizeof(buf), "%u", nBytesProcessed);
Tcl_SetObjResult(
interp,
Tcl_ObjPrintf(