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)
committerBart Van Assche <bart.vanassche@sandisk.com>
Fri, 16 Dec 2016 10:15:11 +0000 (11:15 +0100)
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>
drivers/target/iscsi/iscsi_target_tpg.c

index 552151579a28285665d12d31a2ce22ed5df2cee6..2e7e08dbda4807ed51c6e886b3399bc95199f3d5 100644 (file)
@@ -260,7 +260,6 @@ err_out:
                iscsi_release_param_list(tpg->param_list);
                tpg->param_list = NULL;
        }
-       kfree(tpg);
        return -ENOMEM;
 }