]> git.karo-electronics.de Git - linux-beck.git/commit
target/iscsi: Fix double free in lio_target_tiqn_addtpg()
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 13 Dec 2016 12:27:04 +0000 (15:27 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 12 Jan 2017 10:39:30 +0000 (11:39 +0100)
commit0e79a6b4567704970076a5b933bc1736234610ec
tree22de69a3145e9d1642f6f902a8e40f842b3a2668
parent962a12f8e523b984d77cb5063a722a8d9536cffc
target/iscsi: Fix double free in lio_target_tiqn_addtpg()

commit a91918cd3ea11f91c68e08e1e8ce1b560447a80e upstream.

This iscsit_tpg_add_portal_group() function is only called from
lio_target_tiqn_addtpg().  Both functions free the "tpg" pointer on
error so it's a double free bug.  The memory is allocated in the caller
so it should be freed in the caller and not here.

Fixes: e48354ce078c ("iscsi-target: Add iSCSI fabric support for target v4.1")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: David Disseldorp <ddiss@suse.de>
[ bvanassche: Added "Fix" at start of patch title ]
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/target/iscsi/iscsi_target_tpg.c