1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s4:libcli/ldap: ldap4_new_connection() requires a valid lp_ctx

Otherwise we'll crash in a lot of places later.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Stefan Metzmacher 2024-04-17 21:01:08 +02:00 committed by Andrew Bartlett
parent 96e4a92f19
commit 8007569e9f

View File

@ -65,6 +65,10 @@ _PUBLIC_ struct ldap_connection *ldap4_new_connection(TALLOC_CTX *mem_ctx,
return NULL;
}
if (lp_ctx == NULL) {
return NULL;
}
conn = talloc_zero(mem_ctx, struct ldap_connection);
if (conn == NULL) {
return NULL;