CVSROOT: /cvs Module name: src Changes by: [email protected] 2021/12/23 16:48:38
Modified files:
lib/libcrypto/x509: x509_addr.c
Log message:
Fully check the second strtoul() call in v2i_IPAddrBlocks()
This can read a value in an arbitrary base from a string that is
supposed to be followed by whitespace or a colon, so it cannot be
switched to strtonum(). The current checks don't allow a read past
the end, but let's use the standard idiom instead.
ok jsing
