Commit 1f6e9bce authored by Ben Laurie's avatar Ben Laurie
Browse files

Missing return values (Coverity ID 204).

parent 434ba03c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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: