mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
ITS#6862 MozNSS - workaround PR_SetEnv bug
This commit is contained in:
parent
d78cf81648
commit
5e467e4899
1 changed files with 3 additions and 1 deletions
|
|
@ -2891,7 +2891,9 @@ tlsm_init( void )
|
|||
* context in the child.
|
||||
*/
|
||||
if ( !nofork ) {
|
||||
PR_SetEnv( "NSS_STRICT_NOFORK=DISABLED" );
|
||||
/* will leak one time */
|
||||
char *noforkenvvar = PL_strdup( "NSS_STRICT_NOFORK=DISABLED" );
|
||||
PR_SetEnv( noforkenvvar );
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue