diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-07-11 15:42:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:20:06 -0500 |
commit | 3e0aa2e756ec5fb3f03c9029ee442ed0aede5c53 (patch) | |
tree | 1e6615499f2bb40468afce58c351809a96e6da81 /source4/dsdb/samdb/ldb_modules | |
parent | 887461327a93e1677de44438a5e4a1abd5b91f11 (diff) | |
download | samba-3e0aa2e756ec5fb3f03c9029ee442ed0aede5c53.tar.gz samba-3e0aa2e756ec5fb3f03c9029ee442ed0aede5c53.tar.bz2 samba-3e0aa2e756ec5fb3f03c9029ee442ed0aede5c53.zip |
r8321: Fix some uninitalized variable warnings
(This used to be commit 126cb3db4b0cf9c382ba7496ba08311f3b669f00)
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/samldb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/samldb.c b/source4/dsdb/samdb/ldb_modules/samldb.c index 62a796bd89..0c43b8dc06 100644 --- a/source4/dsdb/samdb/ldb_modules/samldb.c +++ b/source4/dsdb/samdb/ldb_modules/samldb.c @@ -145,7 +145,7 @@ static char *samldb_search_domain(struct ldb_module *module, TALLOC_CTX *mem_ctx { const char *sdn; struct ldb_message **res = NULL; - int ret; + int ret = 0; sdn = dn; while ((sdn = strchr(sdn, ',')) != NULL) { |