summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-11-08 12:59:59 +0100
committerVolker Lendecke <vlendec@samba.org>2010-11-08 13:22:06 +0000
commit8b624c1d2084a58f20fd310a47b241cfb2488e49 (patch)
treea3adcd7832778cac46cc0884acb6806fe84d886b /source3
parentd6d2f8a8f2b860cc587d21b3d934ed428edc08ad (diff)
downloadsamba-8b624c1d2084a58f20fd310a47b241cfb2488e49.tar.gz
s3: Fix an uninitialized variable
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon Nov 8 13:22:06 UTC 2010 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/idmap_autorid.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/winbindd/idmap_autorid.c b/source3/winbindd/idmap_autorid.c
index c856ae00c37..6485d7897bd 100644
--- a/source3/winbindd/idmap_autorid.c
+++ b/source3/winbindd/idmap_autorid.c
@@ -69,6 +69,7 @@ static NTSTATUS idmap_autorid_get_domainrange(struct db_context *db,
if (!dbwrap_fetch_uint32(db, HWM, &hwm)) {
DEBUG(1, ("Fatal error while fetching current "
"HWM value!\n"));
+ ret = NT_STATUS_INTERNAL_ERROR;
goto error;
}