summaryrefslogtreecommitdiffstats
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2015-03-04 10:28:20 +0100
committerDavid Disseldorp <ddiss@samba.org>2015-03-04 14:46:07 +0100
commit8e195fb52ecfa3c263f68b74f989fb48a3c9116f (patch)
tree3b56f641c4d37914fe0a5dccc104f85864078752 /source3
parent25928b1bcc031469c5321ab283a8d0c32dde2f4f (diff)
downloadsamba-8e195fb52ecfa3c263f68b74f989fb48a3c9116f.tar.gz
samba-8e195fb52ecfa3c263f68b74f989fb48a3c9116f.tar.xz
samba-8e195fb52ecfa3c263f68b74f989fb48a3c9116f.zip
winbind: Fix CID 1273294 Uninitialized scalar variable
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/idmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c
index 70f4e02fd4..1e2feb9047 100644
--- a/source3/winbindd/idmap.c
+++ b/source3/winbindd/idmap.c
@@ -173,7 +173,7 @@ static struct idmap_domain *idmap_init_domain(TALLOC_CTX *mem_ctx,
char *config_option = NULL;
const char *range;
unsigned low_id = 0;
- unsigned high_id;
+ unsigned high_id = 0;
result = talloc_zero(mem_ctx, struct idmap_domain);
if (result == NULL) {