-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: APIs, Live Restore
-
Storage Engines
-
StorEng - 2025-03-28
The below code has a bug, if WT_ERR(dest_fh->close(dest_fh, wt_session)) returns an error the dest_fh is freed while dest_closed is false, this causes the code entering if (!dest_closed && dest_fh != NULL).
WT_ERR(dest_fh->close(dest_fh, wt_session)); dest_closed = true; WT_ERR(lr_fs->os_file_system->fs_rename( lr_fs->os_file_system, wt_session, tmp_dest_path, dest_path, 0)); err: if (source_fh != NULL) WT_TRET(source_fh->close(source_fh, wt_session)); if (!dest_closed && dest_fh != NULL) WT_TRET(dest_fh->close(dest_fh, wt_session));
- duplicates
-
WT-13967 Fix Coverity warnings in live restore
-
- Closed
-