Re: [PATCH] [S390] unsigned ops->size cannot be negative

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Oct 14, 2008 at 08:57:45PM -0400, roel kluin wrote:
> unsigned ops->size cannot be negative

True.

> N.B. It could be possible that a different fix is needed.

Why fix? Does it fix a problem for you?
To me it looks like you removed a pointless check. If this is supposed
to fix any real problem then we need to take closer look.

> diff --git a/arch/s390/appldata/appldata_base.c b/arch/s390/appldata/appldata_base.c
> index a7f8979..a06a47c 100644
> --- a/arch/s390/appldata/appldata_base.c
> +++ b/arch/s390/appldata/appldata_base.c
> @@ -424,7 +424,7 @@ out:
>   */
>  int appldata_register_ops(struct appldata_ops *ops)
>  {
> -	if ((ops->size > APPLDATA_MAX_REC_SIZE) || (ops->size < 0))
> +	if (ops->size > APPLDATA_MAX_REC_SIZE)
>  		return -EINVAL;
--
To unsubscribe from this list: send the line "unsubscribe linux-s390" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Kernel Development]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite Info]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Samba]     [Linux Media]     [Device Mapper]

  Powered by Linux