Build Update for openssl/openssl
-------------------------------------

Build: #4312
Status: Errored

Duration: 15 minutes and 16 seconds
Commit: 416a5b6 (master)
Author: Matt Caswell
Message: BIO_printf() can fail to print the last character

If the string to print is exactly 2048 character long (excluding the NULL
terminator) then BIO_printf will chop off the last byte. This is because
it has filled its static buffer but hasn't yet allocated a dynamic buffer.
In cases where we don't have a dynamic buffer we need to truncate but that
is not the case for BIO_printf(). We need to check whether we are able to
have a dynamic buffer buffer deciding to truncate.

Reviewed-by: Rich Salz <rs...@openssl.org>

View the changeset: 
https://github.com/openssl/openssl/compare/fa28bfd66fc2...416a5b6c92f9

View the full build log and details: 
https://travis-ci.org/openssl/openssl/builds/135116124

--

You can configure recipients for build notifications in your .travis.yml file. 
See https://docs.travis-ci.com/user/notifications

_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to