From: Dan Carpenter Date: Tue, 13 Dec 2016 12:27:04 +0000 (+0300) Subject: target/iscsi: Fix double free in lio_target_tiqn_addtpg() X-Git-Tag: v3.2.87~150 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e0e186409134d4348dab00973d39905eaf1605c;p=pandora-kernel.git 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 Reviewed-by: David Disseldorp [ bvanassche: Added "Fix" at start of patch title ] Signed-off-by: Bart Van Assche Signed-off-by: Ben Hutchings --- Reading git-diff-tree failed