CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2022/08/15 04:48:45
Modified files: lib/libcrypto/bio: bio_lib.c Log message: Initialize readbytes in BIO_gets() If the bgets() callback returns <= 0, we currently rely on the user provided callback to set readbytes, which isn't ideal. This also matches what's done in BIO_read() and BIO_write(). ok jsing