summaryrefslogtreecommitdiff
path: root/printf
diff options
context:
space:
mode:
Diffstat (limited to 'printf')
-rw-r--r--printf/doprnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/printf/doprnt.c b/printf/doprnt.c
index 3555979cd..5f0d9e4ac 100644
--- a/printf/doprnt.c
+++ b/printf/doprnt.c
@@ -182,7 +182,7 @@ __gmp_doprnt (const struct doprnt_funs_t *funs, void *data,
#endif
alloc_fmt = __GMP_ALLOCATE_FUNC_TYPE (alloc_fmt_size, char);
fmt = alloc_fmt;
- strcpy (fmt, orig_fmt);
+ memcpy (fmt, orig_fmt, alloc_fmt_size);
/* last_fmt and last_ap are just after the last output, and hence where
the next output will begin, when that's done */