提交 47263ace 编写于 作者: M Matt Caswell

Fix some bogus uninit variable warnings

Reviewed-by: NRichard Levitte <levitte@openssl.org>
上级 b055fceb
...@@ -348,7 +348,7 @@ int BIO_write_ex(BIO *b, const void *in, size_t inl, size_t *written) ...@@ -348,7 +348,7 @@ int BIO_write_ex(BIO *b, const void *in, size_t inl, size_t *written)
int BIO_puts(BIO *b, const char *in) int BIO_puts(BIO *b, const char *in)
{ {
int ret; int ret;
size_t written; size_t written = 0;
if ((b == NULL) || (b->method == NULL) || (b->method->bputs == NULL)) { if ((b == NULL) || (b->method == NULL) || (b->method->bputs == NULL)) {
BIOerr(BIO_F_BIO_PUTS, BIO_R_UNSUPPORTED_METHOD); BIOerr(BIO_F_BIO_PUTS, BIO_R_UNSUPPORTED_METHOD);
...@@ -391,7 +391,7 @@ int BIO_puts(BIO *b, const char *in) ...@@ -391,7 +391,7 @@ int BIO_puts(BIO *b, const char *in)
int BIO_gets(BIO *b, char *out, int outl) int BIO_gets(BIO *b, char *out, int outl)
{ {
int ret; int ret;
size_t read; size_t read = 0;
if ((b == NULL) || (b->method == NULL) || (b->method->bgets == NULL)) { if ((b == NULL) || (b->method == NULL) || (b->method->bgets == NULL)) {
BIOerr(BIO_F_BIO_GETS, BIO_R_UNSUPPORTED_METHOD); BIOerr(BIO_F_BIO_GETS, BIO_R_UNSUPPORTED_METHOD);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册