mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 10:39:34 -05:00
Initialize globals as some linkers don't support shared, uninitialized
data segments.
This commit is contained in:
parent
ec170d179f
commit
3c63a944eb
1 changed files with 2 additions and 2 deletions
|
|
@ -21,12 +21,12 @@
|
|||
* we set ber_pvt_err_file to stderr later, when it first gets
|
||||
* referenced.
|
||||
*/
|
||||
FILE *ber_pvt_err_file;
|
||||
FILE *ber_pvt_err_file = NULL;
|
||||
|
||||
/*
|
||||
* ber errno
|
||||
*/
|
||||
BER_ERRNO_FN ber_int_errno_fn;
|
||||
BER_ERRNO_FN ber_int_errno_fn = NULL;
|
||||
|
||||
int * ber_errno_addr(void)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue