diff options
author | Sverker Eriksson <[email protected]> | 2012-08-21 17:08:08 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2012-08-21 17:08:08 +0200 |
commit | 7fc31186ee1afbc1fb5b47b02e412a7546711cb0 (patch) | |
tree | ef37d826dcb8d350d6d265b277051bb0fb00cf6e /erts/lib_src | |
parent | 064b42237d891d5fdcb6c1a351980b8291437618 (diff) | |
download | otp-7fc31186ee1afbc1fb5b47b02e412a7546711cb0.tar.gz otp-7fc31186ee1afbc1fb5b47b02e412a7546711cb0.tar.bz2 otp-7fc31186ee1afbc1fb5b47b02e412a7546711cb0.zip |
erts: Fix bug in erts_printf for %s with precision
Valgrind complains "Conditional jump or move depends on uninitialised value"
when strlen steps past given string maxlen (precision).
Diffstat (limited to 'erts/lib_src')
-rw-r--r-- | erts/lib_src/common/erl_printf_format.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/erts/lib_src/common/erl_printf_format.c b/erts/lib_src/common/erl_printf_format.c index 473791dce4..71d2aa35d0 100644 --- a/erts/lib_src/common/erl_printf_format.c +++ b/erts/lib_src/common/erl_printf_format.c @@ -457,6 +457,15 @@ static int fmt_double(fmtfn_t fn,void*arg,double val, return res; } +/* strnlen doesn't exist everywhere */ +static size_t my_strnlen(const char *s, size_t maxlen) +{ + size_t i = 0; + while (i < maxlen && s[i] != '\0') + i++; + return i; +} + int erts_printf_format(fmtfn_t fn, void* arg, char* fmt, va_list ap) { char* ptr0 = fmt; @@ -771,9 +780,7 @@ int erts_printf_format(fmtfn_t fn, void* arg, char* fmt, va_list ap) case FMTC_s: { char* str = va_arg(ap,char*); - int len = strlen(str); - if (precision >= 0 && precision < len) - len = precision; + int len = (precision >= 0) ? my_strnlen(str,precision) : strlen(str); if (width > 0 && !(fmt & FMTF_adj)) { if (width > len) BLANKS(fn, arg, width - len, count); |