mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
Fix use after free regression in spa_remove_healed_errors()
6839ec6f10
placed code in
spa_remove_healed_errors() that uses a pointer after the kmem_free()
call that frees it.
Reported-by: Coverity (CID-1562375)
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: George Amanakis <gamanakis@gmail.com>
Signed-off-by: Richard Yao <richard.yao@alumni.stonybrook.edu>
Closes #14860
This commit is contained in:
parent
7381ddf1ab
commit
c87798d8ff
@ -683,7 +683,6 @@ spa_remove_healed_errors(spa_t *spa, avl_tree_t *s, avl_tree_t *l, dmu_tx_t *tx)
|
||||
&cookie)) != NULL) {
|
||||
remove_error_from_list(spa, s, &se->se_bookmark);
|
||||
remove_error_from_list(spa, l, &se->se_bookmark);
|
||||
kmem_free(se, sizeof (spa_error_entry_t));
|
||||
|
||||
if (!spa_feature_is_enabled(spa, SPA_FEATURE_HEAD_ERRLOG)) {
|
||||
bookmark_to_name(&se->se_bookmark, name, sizeof (name));
|
||||
@ -713,6 +712,7 @@ spa_remove_healed_errors(spa_t *spa, avl_tree_t *s, avl_tree_t *l, dmu_tx_t *tx)
|
||||
}
|
||||
zap_cursor_fini(&zc);
|
||||
}
|
||||
kmem_free(se, sizeof (spa_error_entry_t));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user