CVSROOT: /cvs Module name: src Changes by: [email protected] 2025/02/26 02:52:55
Modified files:
lib/libcrypto/objects: obj_dat.c
Log message:
obj_dat: don't shift a->length into the sign bit
For an OID of excessive length >= 2^12, a->length << 20L is undefined,
so add a cast to the target type of (unsigned long).
>From Kenjiro Nakayama
