diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2010-09-25 15:12:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2010-09-25 15:12:02 +0000 |
commit | 47aca9b87dccacc92554e8ed1105191dcd583999 (patch) | |
tree | 89958a1d4fdb042aa59952bb9ceb5b042417ea3a /gnu | |
parent | e2b54fe77c585fa3712a12ac064e53a2b68577e3 (diff) |
Use snprintf() not sprintf()
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/perl/x2p/str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/x2p/str.c b/gnu/usr.bin/perl/x2p/str.c index 58798c011fc..48e417eee34 100644 --- a/gnu/usr.bin/perl/x2p/str.c +++ b/gnu/usr.bin/perl/x2p/str.c @@ -29,7 +29,7 @@ str_2ptr(register STR *str) GROWSTR(&(str->str_ptr), &(str->str_len), 24); s = str->str_ptr; if (str->str_nok) { - sprintf(s,"%.20g",str->str_nval); + snprintf(s,str->str_len,"%.20g",str->str_nval); while (*s) s++; } *s = '\0'; |