nvme-fabrics: Fix memory leaks in nvmf_parse_options()
authorBart Van Assche <bart.vanassche@sandisk.com>
Tue, 18 Oct 2016 20:10:46 +0000 (13:10 -0700)
committerSagi Grimberg <sagi@grimberg.me>
Tue, 6 Dec 2016 08:17:03 +0000 (10:17 +0200)
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
drivers/nvme/host/fabrics.c

index 68fb26b..12f19c4 100644 (file)
@@ -666,10 +666,12 @@ static int nvmf_parse_options(struct nvmf_ctrl_options *opts,
                        if (nqnlen >= NVMF_NQN_SIZE) {
                                pr_err("%s needs to be < %d bytes\n",
                                        p, NVMF_NQN_SIZE);
+                               kfree(p);
                                ret = -EINVAL;
                                goto out;
                        }
                        opts->host = nvmf_host_add(p);
+                       kfree(p);
                        if (!opts->host) {
                                ret = -ENOMEM;
                                goto out;