Searched refs:thiswb (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/crypto/external/bsd/openssl.old/dist/ssl/record/
H A Dssl3_buffer.c116 SSL3_BUFFER *thiswb = &wb[currpipe]; local
118 if (thiswb->buf != NULL && thiswb->len != len) {
119 OPENSSL_free(thiswb->buf);
120 thiswb->buf = NULL; /* force reallocation */
123 if (thiswb->buf == NULL) {
136 memset(thiswb, 0, sizeof(SSL3_BUFFER));
137 thiswb->buf = p;
138 thiswb->len = len;
/netbsd-current/crypto/external/bsd/openssl/dist/ssl/record/
H A Dssl3_buffer.c120 SSL3_BUFFER *thiswb = &wb[currpipe]; local
122 if (thiswb->len != len) {
123 OPENSSL_free(thiswb->buf);
124 thiswb->buf = NULL; /* force reallocation */
127 if (thiswb->buf == NULL) {
143 memset(thiswb, 0, sizeof(SSL3_BUFFER));
144 thiswb->buf = p;
145 thiswb->len = len;

Completed in 186 milliseconds