From: Andrew Morton drivers/md/dm-ioctl.c:1405: warning: 'param' may be used uninitialized in this function Signed-off-by: Andrew Morton Signed-off-by: Alasdair G Kergon --- drivers/md/dm-ioctl.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.24/drivers/md/dm-ioctl.c =================================================================== --- linux-2.6.24.orig/drivers/md/dm-ioctl.c 2008-02-07 13:48:09.000000000 +0000 +++ linux-2.6.24/drivers/md/dm-ioctl.c 2008-02-07 13:48:19.000000000 +0000 @@ -1402,7 +1402,7 @@ static int ctl_ioctl(uint command, struc { int r = 0; unsigned int cmd; - struct dm_ioctl *param; + struct dm_ioctl *uninitialized_var(param); ioctl_fn fn = NULL; size_t param_size;