From: Roel Kluin Date: Tue, 27 Oct 2009 10:51:33 +0000 (+0800) Subject: crypto: ansi_cprng - Fix test in get_prng_bytes X-Git-Tag: v2.6.33-rc1~365^2~15 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=2024e7d6804b3f6251b28126eceb7f6bf2e3a4e8;p=linux.git crypto: ansi_cprng - Fix test in get_prng_bytes size_t nbytes cannot be less than 0 and the test was redundant. Signed-off-by: Roel Kluin Acked-by: Neil Horman Signed-off-by: Herbert Xu --- diff --git a/crypto/ansi_cprng.c b/crypto/ansi_cprng.c index 027176a0e889..45bd2182cb36 100644 --- a/crypto/ansi_cprng.c +++ b/crypto/ansi_cprng.c @@ -193,9 +193,6 @@ static int get_prng_bytes(char *buf, size_t nbytes, struct prng_context *ctx, int err; - if (nbytes < 0) - return -EINVAL; - spin_lock_bh(&ctx->prng_lock); err = -EINVAL;