Author: brane Revision: 1926988 Modified property: svn:log Modified: svn:log at Sun Jul 6 09:56:14 2025 ------------------------------------------------------------------------------ --- svn:log (original) +++ svn:log Sun Jul 6 09:56:14 2025 @@ -5,10 +5,12 @@ Fix some more narrowing, unreachable-cod == Narrowing conversions == * buckets/ssl_buckets.c - (bio_bucket_read): ### Safe cast apr_size_t -> int - (bio_file_read): ### Safe cast apr_size_t -> int - (bio_file_write): ### Safe cast apr_size_t -> int - (serf_ssl_negotiate_protocol): ### Safe cast apr_size_t -> int + (bio_bucket_read, + bio_file_read, + bio_file_write, + serf_ssl_negotiate_protocol): Cast apr_size_t values to int. All these + casts are trivially safe, because the values are either initialized from + or derived from an int, or are previously checked. (ocsp_callback): Make 'len' a long, which is the type of the return value from SSL_get_tlsext_status_ocsp_resp().