projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
434ba03
)
Missing return values (Coverity ID 204).
author
Ben Laurie
<ben@openssl.org>
Sat, 13 Dec 2008 17:19:40 +0000
(17:19 +0000)
committer
Ben Laurie
<ben@openssl.org>
Sat, 13 Dec 2008 17:19:40 +0000
(17:19 +0000)
crypto/comp/c_zlib.c
patch
|
blob
|
history
diff --git
a/crypto/comp/c_zlib.c
b/crypto/comp/c_zlib.c
index 0f34597e70427cf45dd1fe4a6c7c3195e77fea4f..0e503bf1772b39b00c366e55bc22bd390a0a7b02 100644
(file)
--- 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: