From: taco <tacoee@gmail.com>
To: linux-scsi@vger.kernel.org
Subject: [PATCH 1/1]cciss: Fix free issue
Date: Sun, 28 Aug 2011 21:54:30 +0800 [thread overview]
Message-ID: <20110828135427.GA10740@gmail.com> (raw)
We just need to free j not nr_cmds if kmalloc for cmd_sg_list failed.
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
index 8f4ef65..7b729ca 100644
--- a/drivers/block/cciss.c
+++ b/drivers/block/cciss.c
@@ -321,7 +321,7 @@ static SGDescriptor_struct **cciss_allocate_sg_chain_blocks(
}
return cmd_sg_list;
clean:
- cciss_free_sg_chain_blocks(cmd_sg_list, nr_cmds);
+ cciss_free_sg_chain_blocks(cmd_sg_list, j);
return NULL;
}
reply other threads:[~2011-08-28 13:54 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110828135427.GA10740@gmail.com \
--to=tacoee@gmail.com \
--cc=linux-scsi@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).