Security fixes brought forward from 0.9.7.
[openssl.git] / crypto / evp / bio_b64.c
index f12eac1b55a06b37a49d1d579f1b65d7edb9fca0..6e550f6a430e5885aae9ff1051b593158422468e 100644 (file)
@@ -165,6 +165,7 @@ static int b64_read(BIO *b, char *out, int outl)
                {
                i=ctx->buf_len-ctx->buf_off;
                if (i > outl) i=outl;
+               OPENSSL_assert(ctx->buf_off+i < sizeof ctx->buf);
                memcpy(out,&(ctx->buf[ctx->buf_off]),i);
                ret=i;
                out+=i;