[PATCH] regress: fix memleak in snprintftest

Jitendra Sharma jitendra.sharma at intel.com
Mon Aug 5 16:28:02 AEST 2019


Release buffer acquired in test.
---
 openbsd-compat/regress/snprintftest.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/openbsd-compat/regress/snprintftest.c b/openbsd-compat/regress/snprintftest.c
index 4ca63e18..224ba7c5 100644
--- a/openbsd-compat/regress/snprintftest.c
+++ b/openbsd-compat/regress/snprintftest.c
@@ -47,7 +47,7 @@ int
 main(void)
 {
 	char b[5];
-	char *src;
+	char *src = NULL;
 
 	snprintf(b,5,"123456789");
 	if (b[4] != '\0')
@@ -69,5 +69,7 @@ main(void)
 	if (x_snprintf(b, 1, "%s %d", "hello", 12345) != 11)
 		fail("vsnprintf does not return required length");
 
+	if(src)
+		free(src);
 	return failed;
 }
-- 
2.22.0



More information about the openssh-unix-dev mailing list