diff options
Diffstat (limited to 'src/lib/libcrypto/bio/bf_nbio.c')
-rw-r--r-- | src/lib/libcrypto/bio/bf_nbio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/libcrypto/bio/bf_nbio.c b/src/lib/libcrypto/bio/bf_nbio.c index 028616c064..c72a23c2e1 100644 --- a/src/lib/libcrypto/bio/bf_nbio.c +++ b/src/lib/libcrypto/bio/bf_nbio.c | |||
@@ -125,6 +125,7 @@ static int nbiof_free(BIO *a) | |||
125 | 125 | ||
126 | static int nbiof_read(BIO *b, char *out, int outl) | 126 | static int nbiof_read(BIO *b, char *out, int outl) |
127 | { | 127 | { |
128 | NBIO_TEST *nt; | ||
128 | int ret=0; | 129 | int ret=0; |
129 | #if 1 | 130 | #if 1 |
130 | int num; | 131 | int num; |
@@ -133,6 +134,7 @@ static int nbiof_read(BIO *b, char *out, int outl) | |||
133 | 134 | ||
134 | if (out == NULL) return(0); | 135 | if (out == NULL) return(0); |
135 | if (b->next_bio == NULL) return(0); | 136 | if (b->next_bio == NULL) return(0); |
137 | nt=(NBIO_TEST *)b->ptr; | ||
136 | 138 | ||
137 | BIO_clear_retry_flags(b); | 139 | BIO_clear_retry_flags(b); |
138 | #if 1 | 140 | #if 1 |