From: Dr. Stephen Henson Date: Mon, 23 May 2011 12:27:43 +0000 (+0000) Subject: PR: 2522 X-Git-Tag: OpenSSL-fips-2_0-rc1~403 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=73ab341130352e9e32ce01dbc2b86d3970461a3c;p=oweals%2Fopenssl.git PR: 2522 Submitted by: Henrik Grindal Bakken Don't compare past end of buffer. --- diff --git a/fips/rand/fips_drbg_lib.c b/fips/rand/fips_drbg_lib.c index 7892a02b60..46f059d058 100644 --- a/fips/rand/fips_drbg_lib.c +++ b/fips/rand/fips_drbg_lib.c @@ -145,7 +145,7 @@ static size_t fips_get_entropy(DRBG_CTX *dctx, unsigned char **pout, if (rv < (min_len + bl) || (rv % bl)) return 0; /* Compare consecutive blocks for continuous PRNG test */ - for (p = tout; p < tout + rv; p += bl) + for (p = tout; p < tout + rv - bl; p += bl) { if (!memcmp(p, p + bl, bl)) {