From 8b624c1d2084a58f20fd310a47b241cfb2488e49 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 8 Nov 2010 12:59:59 +0100 Subject: [PATCH] s3: Fix an uninitialized variable Autobuild-User: Volker Lendecke Autobuild-Date: Mon Nov 8 13:22:06 UTC 2010 on sn-devel-104 --- source3/winbindd/idmap_autorid.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/winbindd/idmap_autorid.c b/source3/winbindd/idmap_autorid.c index c856ae00c3..6485d7897b 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; } -- 2.34.1