From 1f6e9bce21c4459cca7e23a4ceab8169f1092b25 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 13 Dec 2008 17:19:40 +0000 Subject: [PATCH] Missing return values (Coverity ID 204). --- crypto/comp/c_zlib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crypto/comp/c_zlib.c b/crypto/comp/c_zlib.c index 0f34597e70..0e503bf177 100644 --- a/crypto/comp/c_zlib.c +++ b/crypto/comp/c_zlib.c @@ -727,6 +727,7 @@ static long bio_zlib_ctrl(BIO *b, int cmd, long num, void *ptr) case BIO_CTRL_RESET: ctx->ocount = 0; ctx->odone = 0; + ret = 1; break; case BIO_CTRL_FLUSH: @@ -771,7 +772,7 @@ static long bio_zlib_ctrl(BIO *b, int cmd, long num, void *ptr) } ctx->obufsize = obs; } - + ret = 1; break; case BIO_C_DO_STATE_MACHINE: -- 2.34.1