2/19

Joe Thornber (joe@fib011235813.fsnet.co.uk)
Mon, 16 Dec 2002 10:06:57 +0000


An error value was not being checked correctly in open_dev().
[Kevin Corry]
--- diff/drivers/md/dm-table.c 2002-11-28 11:30:39.000000000 +0000
+++ source/drivers/md/dm-table.c 2002-12-16 09:40:30.000000000 +0000
@@ -356,7 +356,7 @@
return -ENOMEM;

r = blkdev_get(d->bdev, d->mode, 0, BDEV_RAW);
- if (!r)
+ if (r)
return r;

r = bd_claim(d->bdev, _claim_ptr);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/