Re: [patch] Does this correct a bug in ibmcam.c?

From: Alan Cox (alan@lxorguk.ukuu.org.uk)
Date: Mon Mar 12 2001 - 14:24:27 EST


> + int chan;
>
> - if (copy_from_user(&v, arg, sizeof(v)))
> - return -EFAULT;
> - if ((v < 0) || (v >= 3)) /* 3 grades of lighting conditions */
> - return -EINVAL;
> - if (v != ibmcam->vchan.channel) {
> - ibmcam->vchan.channel = v;
> + chan = (int)arg;
> +
> + if ((chan < 0) || (chan >= 3)) /* 3 grades of lighting conditions */
> + return -EINVAL;
> +
> + if (chan != ibmcam->vchan.channel) {
> + ibmcam->vchan.channel = chan;
> usb_ibmcam_change_lighting_conditions(ibmcam);
> - }
> + }
> return 0;
> }

This change is wrong. I think you are calling the ioctl wrongly

-
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/



This archive was generated by hypermail 2b29 : Thu Mar 15 2001 - 21:00:14 EST