diff options
| author | Aditya Pakki <pakki001@umn.edu> | 2020-06-12 15:01:54 -0500 |
|---|---|---|
| committer | Sasha Levin <sashal@kernel.org> | 2020-06-30 15:36:14 -0400 |
| commit | 796100872499d7a1581ff3b6fc0f55bab2e46bc5 (patch) | |
| tree | ae78da23c9dd66542a59ddbe0b20a4415ec76ea4 /lib | |
| parent | a81106f526afbfce8d2cbc86a5f9b764bc21b557 (diff) | |
test_objagg: Fix potential memory leak in error handling
[ Upstream commit a6379f0ad6375a707e915518ecd5c2270afcd395 ]
In case of failure of check_expect_hints_stats(), the resources
allocated by objagg_hints_get should be freed. The patch fixes
this issue.
Signed-off-by: Aditya Pakki <pakki001@umn.edu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/test_objagg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/test_objagg.c b/lib/test_objagg.c index 72c1abfa154d..da137939a410 100644 --- a/lib/test_objagg.c +++ b/lib/test_objagg.c @@ -979,10 +979,10 @@ err_check_expect_stats2: err_world2_obj_get: for (i--; i >= 0; i--) world_obj_put(&world2, objagg, hints_case->key_ids[i]); - objagg_hints_put(hints); - objagg_destroy(objagg2); i = hints_case->key_ids_count; + objagg_destroy(objagg2); err_check_expect_hints_stats: + objagg_hints_put(hints); err_hints_get: err_check_expect_stats: err_world_obj_get: |
