[dm-devel] [dm- devel][PATCH] tests/hwtable: fix a memory free in replicate_config

Zhiqiang Liu liuzhiqiang26 at huawei.com
Mon Aug 3 02:43:54 UTC 2020


In replicate_config func, hwtable is allocated by calling get_used_hwes
func, however it is not freed.

Signed-off-by: Zhiqiang Liu <liuzhiqiang26 at huawei.com>
---
 tests/hwtable.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/hwtable.c b/tests/hwtable.c
index 473028b7..84d2b35f 100644
--- a/tests/hwtable.c
+++ b/tests/hwtable.c
@@ -468,6 +468,7 @@ static void replicate_config(const struct hwt_state *hwt, bool local)
 		/* "local" configuration */
 		hwtable = get_used_hwes(hwt->vecs->pathvec);
 		cfg1 = snprint_config(conf, NULL, hwtable, hwt->vecs->mpvec);
+		vector_free(hwtable);
 	}

 	assert_non_null(cfg1);
-- 
2.24.0.windows.2





More information about the dm-devel mailing list