diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-03-15 05:31:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:57:21 -0500 |
commit | 07fd3bd5121aa9b81b6c7a14910f09f64ab4bad9 (patch) | |
tree | aa6dcc9aa84c0459a2aea08bf7bdad9ed3634e16 | |
parent | f9827c2ad157b9a5d26028ea6f3e7e1cec871ca1 (diff) | |
download | samba-07fd3bd5121aa9b81b6c7a14910f09f64ab4bad9.tar.gz samba-07fd3bd5121aa9b81b6c7a14910f09f64ab4bad9.tar.xz samba-07fd3bd5121aa9b81b6c7a14910f09f64ab4bad9.zip |
r14424: another empty controls case
(This used to be commit 7d0eb678bf3649fb4e09da039dd1b716ea3df2cc)
-rw-r--r-- | source4/libcli/ldap/ldap_controls.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/libcli/ldap/ldap_controls.c b/source4/libcli/ldap/ldap_controls.c index 373b71d370..ccb1b74a55 100644 --- a/source4/libcli/ldap/ldap_controls.c +++ b/source4/libcli/ldap/ldap_controls.c @@ -137,7 +137,9 @@ static BOOL decode_server_sort_request(void *mem_ctx, DATA_BLOB in, void **out) } } - lssc[num] = NULL; + if (lssc != NULL) { + lssc[num] = NULL; + } if (!asn1_end_tag(&data)) { return False; |