Linux Kernel Selftest development
 help / color / mirror / Atom feed
* [PATCH] kunit: alloc_string_stream_fragment error handling bug fix
@ 2022-10-28 14:42 YoungJun.park
  2022-10-29 10:35 ` Maíra Canal
  2022-10-30  3:20 ` David Gow
  0 siblings, 2 replies; 4+ messages in thread
From: YoungJun.park @ 2022-10-28 14:42 UTC (permalink / raw)
  To: Brendan Higgins
  Cc: David Gow, linux-kselftest, kunit-dev, linux-kernel,
	YoungJun.park

When it fails to allocate fragment, it does not free and return error.
And check the pointer inappropriately.

Signed-off-by: YoungJun.park <her0gyugyu@gmail.com>
---
 lib/kunit/string-stream.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lib/kunit/string-stream.c b/lib/kunit/string-stream.c
index 72659a9773e3..0228fe814e96 100644
--- a/lib/kunit/string-stream.c
+++ b/lib/kunit/string-stream.c
@@ -23,8 +23,10 @@ static struct string_stream_fragment *alloc_string_stream_fragment(
 		return ERR_PTR(-ENOMEM);
 
 	frag->fragment = kunit_kmalloc(test, len, gfp);
-	if (!frag->fragment)
+	if (!frag->fragment) {
+		kunit_kfree(test, frag);
 		return ERR_PTR(-ENOMEM);
+	}
 
 	return frag;
 }
@@ -56,7 +58,7 @@ int string_stream_vadd(struct string_stream *stream,
 	frag_container = alloc_string_stream_fragment(stream->test,
 						      len,
 						      stream->gfp);
-	if (!frag_container)
+	if (IS_ERR(frag_container))
 		return -ENOMEM;
 
 	len = vsnprintf(frag_container->fragment, len, fmt, args);
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-31 20:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-28 14:42 [PATCH] kunit: alloc_string_stream_fragment error handling bug fix YoungJun.park
2022-10-29 10:35 ` Maíra Canal
2022-10-30  3:20 ` David Gow
2022-10-31 20:47   ` Daniel Latypov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox