Blame SOURCES/0011-file_utils-Fix-resource-leak.patch

0f0231
From 677fa789e4136dbdd589c1e65efc7cdaad7506ac Mon Sep 17 00:00:00 2001
0f0231
From: Ming-Hung Tsai <mtsai@redhat.com>
0f0231
Date: Fri, 4 Jun 2021 21:37:02 +0800
0f0231
Subject: [PATCH 1/2] [file_utils] Fix resource leak
0f0231
0f0231
---
0f0231
 base/file_utils.cc | 1 +
0f0231
 1 file changed, 1 insertion(+)
0f0231
0f0231
diff --git a/base/file_utils.cc b/base/file_utils.cc
0f0231
index 8253660..e6095f7 100644
0f0231
--- a/base/file_utils.cc
0f0231
+++ b/base/file_utils.cc
0f0231
@@ -159,6 +159,7 @@ file_utils::zero_superblock(std::string const &path)
0f0231
 		free(buffer);
0f0231
 		throw runtime_error("couldn't zero superblock");
0f0231
 	}
0f0231
+	free(buffer);
0f0231
 }
0f0231
 
0f0231
 //----------------------------------------------------------------
0f0231
-- 
0f0231
1.8.3.1
0f0231