Skip to content
Snippets Groups Projects
Commit 90df62f9 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6863

parent 269bc814
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.25 Engineering
Fixed ldapsearch pagedresults loop (ITS#6755)
Fixed tools for incompatible args (ITS#6849)
Fixed libldap MozNSS crash (ITS#6863)
Fixed slapd add objectclasses in order (ITS#6837)
Added slapd ordering for uidNumber and gidNumber (ITS#6852)
Fixed slapd segfault when adding values out of order (ITS#6858)
......
......@@ -2272,7 +2272,7 @@ tlsm_is_non_ssl_message( PRFileDesc *fd, ber_tag_t *thebyte )
}
if ( p->firsttag == LBER_SEQUENCE ) {
if ( *thebyte ) {
if ( thebyte ) {
*thebyte = p->firsttag;
}
return 1;
......@@ -2769,7 +2769,7 @@ tlsm_PR_GetSocketOption(PRFileDesc *fd, PRSocketOptionData *data)
struct tls_data *p;
p = tlsm_get_pvt_tls_data( fd );
if ( !data ) {
if ( p == NULL || data == NULL ) {
return PR_FAILURE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment