From: Ben Laurie Date: Sat, 13 Dec 2008 17:19:40 +0000 (+0000) Subject: Missing return values (Coverity ID 204). X-Git-Tag: OpenSSL_0_9_8k^2~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f6e9bce21c4459cca7e23a4ceab8169f1092b25;p=openssl Missing return values (Coverity ID 204). --- 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: