summaryrefslogtreecommitdiff
path: root/source3/libads/dns.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-04-30 02:51:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:19:49 -0500
commit56a5d05b8b285250bdc0e9cc3c8f3c3d8af80382 (patch)
treefe800dc017985b616874b79ffad6122a1e5bde34 /source3/libads/dns.c
parentbe8b0685a55700c6bce3681734800ec6434b0364 (diff)
downloadsamba-56a5d05b8b285250bdc0e9cc3c8f3c3d8af80382.tar.gz
samba-56a5d05b8b285250bdc0e9cc3c8f3c3d8af80382.tar.bz2
samba-56a5d05b8b285250bdc0e9cc3c8f3c3d8af80382.zip
r22590: Make TALLOC_ARRAY consistent across all uses.
That should be it.... Jeremy. (This used to be commit 603233a98bbf65467c8b4f04719d771c70b3b4c9)
Diffstat (limited to 'source3/libads/dns.c')
-rw-r--r--source3/libads/dns.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/source3/libads/dns.c b/source3/libads/dns.c
index 8b031b0e3a..f16cea2555 100644
--- a/source3/libads/dns.c
+++ b/source3/libads/dns.c
@@ -355,10 +355,14 @@ static NTSTATUS ads_dns_lookup_srv( TALLOC_CTX *ctx, const char *name, struct dn
DEBUG(4,("ads_dns_lookup_srv: %d records returned in the answer section.\n",
answer_count));
- if ( (dcs = TALLOC_ZERO_ARRAY(ctx, struct dns_rr_srv, answer_count)) == NULL ) {
- DEBUG(0,("ads_dns_lookup_srv: talloc() failure for %d char*'s\n",
- answer_count));
- return NT_STATUS_NO_MEMORY;
+ if (answer_count) {
+ if ( (dcs = TALLOC_ZERO_ARRAY(ctx, struct dns_rr_srv, answer_count)) == NULL ) {
+ DEBUG(0,("ads_dns_lookup_srv: talloc() failure for %d char*'s\n",
+ answer_count));
+ return NT_STATUS_NO_MEMORY;
+ }
+ } else {
+ dcs = NULL;
}
/* now skip the header */