summaryrefslogtreecommitdiffstats
path: root/crypto/evp/bio_enc.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-07-26 20:22:49 +0100
committerDr. Stephen Henson <steve@openssl.org>2016-07-26 22:42:31 +0100
commit976ef6adcc157233fb641ca99e2424630ef1814f (patch)
tree1ecb02fddd34c36e5aa6cea5e653d044308b591c /crypto/evp/bio_enc.c
parente125c12f5718cf589b3469aa40a54421a2536bd2 (diff)
Note cipher BIO write errors too.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/evp/bio_enc.c')
-rw-r--r--crypto/evp/bio_enc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/evp/bio_enc.c b/crypto/evp/bio_enc.c
index d1422f03bf..5bc5d65e6d 100644
--- a/crypto/evp/bio_enc.c
+++ b/crypto/evp/bio_enc.c
@@ -231,6 +231,7 @@ static int enc_write(BIO *b, const char *in, int inl)
(unsigned char *)ctx->buf, &ctx->buf_len,
(unsigned char *)in, n)) {
BIO_clear_retry_flags(b);
+ ctx->ok = 0;
return 0;
}
inl -= n;