CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/04/24 09:10:20
Modified files:
lib/libcrypto/pkcs7: pk7_doit.c
Log message:
Simplify PKCS7_get_issuer_and_serial()
The i variable is unused. Likewise for the first assignment to ri.
Instead of an incomplete check that idx is in range, which still
results in a NULL deref if idx < 0, check if ri is not NULL before
accessing, as sk_value() checks the index correctly.
ok jsing kenjiro
