CVSROOT: /cvs Module name: src Changes by: [email protected] 2022/08/31 01:15:31
Modified files:
lib/libcrypto/x509: x509_vfy.c
Log message:
Switch loop bounds from size_t to int in check_hosts()
sk_num() can return a negative value, in which case the upper bound is
SIZE_MAX, which results in a very long for loop.
CID 153997
ok jsing
