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:
b1c4fe3
)
treat init properly
author
Bodo Möller
<bodo@openssl.org>
Mon, 7 Jun 1999 20:34:36 +0000
(20:34 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Mon, 7 Jun 1999 20:34:36 +0000
(20:34 +0000)
crypto/bio/bss_bio.c
patch
|
blob
|
history
diff --git
a/crypto/bio/bss_bio.c
b/crypto/bio/bss_bio.c
index 5b60f541a128917c0092856938d62c1a707e6f98..84b91b5778f6981bd697d5ae51ebb675dd5258bf 100644
(file)
--- a/
crypto/bio/bss_bio.c
+++ b/
crypto/bio/bss_bio.c
@@
-46,7
+46,8
@@
struct bio_bio_st
{
BIO *peer; /* NULL if buf == NULL.
* If peer != NULL, then peer->ptr is also a bio_bio_st,
- * and its "peer" member points back to us. */
+ * and its "peer" member points back to us.
+ * peer != NULL iff init != 0 in the BIO. */
/* This is for what we write (i.e. reading uses peer's struct): */
int closed; /* valid iff peer != NULL */
@@
-224,6
+225,9
@@
static int bio_make_pair(BIO *bio1, BIO *bio2)
b1->peer = bio2;
b2->peer = bio1;
+ bio1->init = 1;
+ bio2->init = 1;
+
return 1;
}