mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 21:13:38 +08:00
Fix crypto/dso/dso_vms.c
In the "Stop raising ERR_R_MALLOC_FAILURE in most places" commit, some fixes of this file weren't done quite right, leading to a symbol being undeclared depending on building circumstances. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/19360)
This commit is contained in:
parent
45ada6b92b
commit
c007f466aa
@ -106,9 +106,12 @@ static int vms_load(DSO *dso)
|
||||
# pragma pointer_size save
|
||||
# pragma pointer_size 32
|
||||
# endif /* __INITIAL_POINTER_SIZE == 64 */
|
||||
# endif /* __INITIAL_POINTER_SIZE && defined
|
||||
* _ANSI_C_SOURCE */
|
||||
|
||||
DSO_VMS_INTERNAL *p = NULL;
|
||||
|
||||
# if __INITIAL_POINTER_SIZE && defined _ANSI_C_SOURCE
|
||||
# if __INITIAL_POINTER_SIZE == 64
|
||||
# pragma pointer_size restore
|
||||
# endif /* __INITIAL_POINTER_SIZE == 64 */
|
||||
|
Loading…
Reference in New Issue
Block a user