Home
last modified time | relevance | path

Searched refs:bpart (Results 1 – 1 of 1) sorted by relevance

/openbsd/src/lib/libcrypto/asn1/
Dasn_mime.c614 BIO *bpart = NULL; in multi_split() local
632 if (sk_BIO_push(parts, bpart) == 0) in multi_split()
640 if (bpart != NULL) { in multi_split()
641 if (sk_BIO_push(parts, bpart) == 0) in multi_split()
644 bpart = BIO_new(BIO_s_mem()); in multi_split()
645 if (bpart == NULL) in multi_split()
647 BIO_set_mem_eof_return(bpart, 0); in multi_split()
649 BIO_write(bpart, "\r\n", 2); in multi_split()
652 BIO_write(bpart, linebuf, len); in multi_split()
655 BIO_free(bpart); in multi_split()