diff options
Diffstat (limited to 'openbsd-compat/bsd-asprintf.c')
| -rw-r--r-- | openbsd-compat/bsd-asprintf.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/openbsd-compat/bsd-asprintf.c b/openbsd-compat/bsd-asprintf.c index 7b83448ca2cdf..822367154ca4b 100644 --- a/openbsd-compat/bsd-asprintf.c +++ b/openbsd-compat/bsd-asprintf.c @@ -78,7 +78,7 @@ int asprintf(char **str, const char *fmt, ...)  {  	va_list ap;  	int ret; -	 +  	*str = NULL;  	va_start(ap, fmt);  	ret = vasprintf(str, fmt, ap); | 
