summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarolin Seeger <kseeger@samba.org>2008-11-17 14:02:52 +0100
committerKarolin Seeger <kseeger@samba.org>2008-11-17 14:02:52 +0100
commit4d7b05ab9509a9c38b0c98d879928f6c4acc304a (patch)
tree1e19955b47cd2323d17a471fc984166481ef43db
parent2db91debc4088063ac84a6aa5f1a8adef8cc4064 (diff)
downloadsamba-4d7b05ab9509a9c38b0c98d879928f6c4acc304a.tar.gz
samba-4d7b05ab9509a9c38b0c98d879928f6c4acc304a.tar.xz
samba-4d7b05ab9509a9c38b0c98d879928f6c4acc304a.zip
Revert "Fix a potential NULL deref in line 258 found by the IBM checker"
This reverts commit 589fe1c879ef23ee9e45f5f877f2696142d57e70.
-rw-r--r--source/libaddns/dnsmarshall.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/libaddns/dnsmarshall.c b/source/libaddns/dnsmarshall.c
index 5530290c57a..8c3389eb9b6 100644
--- a/source/libaddns/dnsmarshall.c
+++ b/source/libaddns/dnsmarshall.c
@@ -252,7 +252,6 @@ void dns_unmarshall_domain_name(TALLOC_CTX *mem_ctx,
if (!(name = talloc(mem_ctx, struct dns_domain_name))) {
buf->error = ERROR_DNS_NO_MEMORY;
- return;
}
dns_unmarshall_label(name, 0, buf, &name->pLabelList);