]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - drivers/char/vt_ioctl.c
vt_ioctl: return -EFAULT on copy_from_user errors
[net-next-2.6.git] / drivers / char / vt_ioctl.c
index 6aa10284104aeb6e4bc3a22833ea347e67c5d976..cb19dbc52136426d3b869c089a7153de2c719c7f 100644 (file)
@@ -1303,7 +1303,9 @@ int vt_ioctl(struct tty_struct *tty, struct file * file,
                if (!perm)
                        goto eperm;
                ret = copy_from_user(&ui, up, sizeof(struct unimapinit));
-               if (!ret)
+               if (ret)
+                       ret = -EFAULT;
+               else
                        con_clear_unimap(vc, &ui);
                break;
              }