CVSROOT: /cvs Module name: src Changes by: [email protected] 2025/06/06 22:37:01
Modified files:
lib/libcrypto : crypto_ex_data.c
Log message:
crypto_ex_data: fix allocation size of classes_new
classes_new is an array of pointers to struct crypto_ex_data, not
an array of struct crypto_ex_data_index, so this overallocated by
240 or 480 bytes on ILP32 or LP64, respectively.
found by jsg using smatch
ok jsing
