mkfs.f2fs: fix memory leak in not enough segments error path

In not enough segements error path of f2fs_write_check_point_pack(),
cp_payload is not freed. Fix the error path.

Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
Seung-Woo Kim 2021-05-07 20:12:24 +09:00 committed by Jaegeuk Kim
parent 5cc365c1e7
commit 1900c22ed2

View File

@ -723,7 +723,7 @@ static int f2fs_write_check_point_pack(void)
if (f2fs_get_usable_segments(sb) <= get_cp(overprov_segment_count)) {
MSG(0, "\tError: Not enough segments to create F2FS Volume\n");
goto free_nat_bits;
goto free_cp_payload;
}
MSG(0, "Info: Overprovision ratio = %.3lf%%\n", c.overprovision);
MSG(0, "Info: Overprovision segments = %u (GC reserved = %u)\n",