mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
s4:dns_server/dlz_bind9.c - initialise "ret" variables
This commit is contained in:
parent
d35d2bf392
commit
aa759de6b3
@ -680,7 +680,7 @@ static isc_result_t dlz_lookup_types(struct dlz_bind9_data *state,
|
|||||||
{
|
{
|
||||||
TALLOC_CTX *tmp_ctx = talloc_new(state);
|
TALLOC_CTX *tmp_ctx = talloc_new(state);
|
||||||
const char *attrs[] = { "dnsRecord", NULL };
|
const char *attrs[] = { "dnsRecord", NULL };
|
||||||
int ret, i;
|
int ret = LDB_SUCCESS, i;
|
||||||
struct ldb_result *res;
|
struct ldb_result *res;
|
||||||
struct ldb_message_element *el;
|
struct ldb_message_element *el;
|
||||||
struct ldb_dn *dn;
|
struct ldb_dn *dn;
|
||||||
@ -767,7 +767,7 @@ _PUBLIC_ isc_result_t dlz_allnodes(const char *zone, void *dbdata,
|
|||||||
{
|
{
|
||||||
struct dlz_bind9_data *state = talloc_get_type_abort(dbdata, struct dlz_bind9_data);
|
struct dlz_bind9_data *state = talloc_get_type_abort(dbdata, struct dlz_bind9_data);
|
||||||
const char *attrs[] = { "dnsRecord", NULL };
|
const char *attrs[] = { "dnsRecord", NULL };
|
||||||
int ret, i, j;
|
int ret = LDB_SUCCESS, i, j;
|
||||||
struct ldb_dn *dn;
|
struct ldb_dn *dn;
|
||||||
struct ldb_result *res;
|
struct ldb_result *res;
|
||||||
TALLOC_CTX *tmp_ctx = talloc_new(state);
|
TALLOC_CTX *tmp_ctx = talloc_new(state);
|
||||||
|
Loading…
Reference in New Issue
Block a user