[LTP] [PATCH v2] lib/tst_memutils.c: Fix resource leak

Bogdan Lezhepekov blezhepekov@suse.de
Fri Feb 11 17:04:40 CET 2022


File descriptor was not closed properly
before return.

Signed-off-by: Bogdan Lezhepekov <blezhepekov@suse.de>
---
 lib/tst_memutils.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/tst_memutils.c b/lib/tst_memutils.c
index 4a4974761..2e6d7d5fd 100644
--- a/lib/tst_memutils.c
+++ b/lib/tst_memutils.c
@@ -122,7 +122,10 @@ static int write_score(const char *path, int score)
 		return 1;
 
 	if (fprintf(f, "%d", score) <= 0)
+	{
+		fclose(f);
 		return 1;
+	}
 
 	if (fclose(f))
 		return 1;
-- 
2.35.1



More information about the ltp mailing list