aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorVladimir Motyka <vladimir.motyka@gmail.com>2011-05-11 00:00:43 -0400
committerChris Ball <cjb@laptop.org>2011-05-24 23:53:49 -0400
commitaea253ecffecd38b5ab97edd73fbe2842a7de371 (patch)
tree43ed3d608705c5a7fb5dbdbb8d75efa120f114ba /drivers
parentcf2b5eea1ea0ff9b3184bc6771bcb93a9fdcd1d9 (diff)
mmc: card: fix potential null dereference of 'idata'
When allocation of idata failed there was a null dereference. Also avoid calling kfree where it isn't needed. Signed-off-by: Vladimir Motyka <vladimir.motyka@gmail.com> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mmc/card/block.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 407836d5571..126c7f41c5a 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -237,24 +237,24 @@ static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
237 idata = kzalloc(sizeof(*idata), GFP_KERNEL); 237 idata = kzalloc(sizeof(*idata), GFP_KERNEL);
238 if (!idata) { 238 if (!idata) {
239 err = -ENOMEM; 239 err = -ENOMEM;
240 goto copy_err; 240 goto out;
241 } 241 }
242 242
243 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) { 243 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
244 err = -EFAULT; 244 err = -EFAULT;
245 goto copy_err; 245 goto idata_err;
246 } 246 }
247 247
248 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks; 248 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
249 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) { 249 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
250 err = -EOVERFLOW; 250 err = -EOVERFLOW;
251 goto copy_err; 251 goto idata_err;
252 } 252 }
253 253
254 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL); 254 idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL);
255 if (!idata->buf) { 255 if (!idata->buf) {
256 err = -ENOMEM; 256 err = -ENOMEM;
257 goto copy_err; 257 goto idata_err;
258 } 258 }
259 259
260 if (copy_from_user(idata->buf, (void __user *)(unsigned long) 260 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
@@ -267,9 +267,10 @@ static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
267 267
268copy_err: 268copy_err:
269 kfree(idata->buf); 269 kfree(idata->buf);
270idata_err:
270 kfree(idata); 271 kfree(idata);
272out:
271 return ERR_PTR(err); 273 return ERR_PTR(err);
272
273} 274}
274 275
275static int mmc_blk_ioctl_cmd(struct block_device *bdev, 276static int mmc_blk_ioctl_cmd(struct block_device *bdev,