Commit b693f941 authored by Bodo Möller's avatar Bodo Möller
Browse files

Consistency fix in BUF_MEM_grow: Initialise to zero when new memory

had to be allocated, not just when reusing the existing buffer.
parent c602e7f4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -118,8 +118,9 @@ int BUF_MEM_grow(BUF_MEM *str, int len)
	else
		{
		str->data=ret;
		str->length=len;
		str->max=n;
		memset(&str->data[str->length],0,len-str->length);
		str->length=len;
		}
	return(len);
	}