mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-26 19:51:32 +00:00
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:
parent
5cc365c1e7
commit
1900c22ed2
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user