VMS: don't use app_malloc() in apps/lib/vms_decc_argv.c
authorRichard Levitte <levitte@openssl.org>
Thu, 20 May 2021 08:31:21 +0000 (10:31 +0200)
committerRichard Levitte <levitte@openssl.org>
Sat, 22 May 2021 05:20:03 +0000 (07:20 +0200)
commita066841554bd23281ae4bb48badc088753f734ca
tree7ea069334fba1052c4b55a42f36673459073ec8d
parent3f987381929ee725daf4746591144dde18f313e1
VMS: don't use app_malloc() in apps/lib/vms_decc_argv.c

The reason being that it would otherwise force test programs to link
with all of libapps.a, which unfortunately causes multiple symbol
definition issues.

The quick and dirty fix is to use OPENSSL_malloc() instead of
app_malloc() in apps/lib/vms_decc_argv.c, and clean up libapps.a
later.

Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15368)
apps/lib/vms_decc_argv.c