diff options
Diffstat (limited to 'src/lib/string')
-rw-r--r-- | src/lib/string/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/string/printf.c b/src/lib/string/printf.c index 82d38242dd..e23da69d0e 100644 --- a/src/lib/string/printf.c +++ b/src/lib/string/printf.c @@ -101,7 +101,7 @@ tor_vasprintf(char **strp, const char *fmt, va_list args) /* If the platform gives us one, use it. */ int r = vasprintf(&strp_tmp, fmt, args); if (r < 0) - *strp = NULL; + *strp = NULL; // LCOV_EXCL_LINE -- no cross-platform way to force this else *strp = strp_tmp; return r; |