Re: patch: make CRYPTO_get_ex_new_index not return 0

2023-05-24 Thread Marc Aldorasi
On Wed, May 24, 2023 at 2:16 PM Theo Buehler wrote: > On Tue, May 23, 2023 at 12:40:40PM -0400, Marc Aldorasi wrote: > > The man page for CRYPTO_get_ex_new_index says that "the value 0 is > > reserved for the legacy "app_data" APIs", but the function can still &

patch: make CRYPTO_get_ex_new_index not return 0

2023-05-23 Thread Marc Aldorasi
The man page for CRYPTO_get_ex_new_index says that "the value 0 is reserved for the legacy "app_data" APIs", but the function can still return 0, which can cause issues for programs that use both APIs. The attached patch causes the returned indices to start at 1 instead. See also the