Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f2d25ef authored by Tomas Henzl's avatar Tomas Henzl Committed by Christoph Hellwig
Browse files

be2iscsi: add an missing goto in error path



a jump to 'free_memory' is apparently missing

Signed-off-by: default avatarTomas Henzl <thenzl@redhat.com>
Reviewed-by: default avatarMike Christie <michaelc@cs.wisc.edu>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 8b8f5d97
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -4198,6 +4198,8 @@ static int hba_setup_cid_tbls(struct beiscsi_hba *phba)
		kfree(phba->ep_array);
		phba->ep_array = NULL;
		ret = -ENOMEM;

		goto free_memory;
	}

	for (i = 0; i < phba->params.cxns_per_ctrl; i++) {