nvme: fixup memory leak in nvme_init_identify()
If nvme_get_effects_log() failed the 'id' buffer from the previous nvme_identify_ctrl() call will never be freed. Signed-off-by: Hannes Reinecke <hare@suse.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
1e5f446162
commit
75c8b19a23
1 changed files with 1 additions and 1 deletions
|
@ -2316,7 +2316,7 @@ int nvme_init_identify(struct nvme_ctrl *ctrl)
|
|||
if (id->lpa & NVME_CTRL_LPA_CMD_EFFECTS_LOG) {
|
||||
ret = nvme_get_effects_log(ctrl);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
goto out_free;
|
||||
}
|
||||
|
||||
if (!ctrl->identified) {
|
||||
|
|
Loading…
Reference in a new issue