mirror of
https://github.com/samba-team/samba.git
synced 2025-02-03 13:47:25 +03:00
winbind: Fix CID 1273294 Uninitialized scalar variable
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
This commit is contained in:
parent
25928b1bcc
commit
8e195fb52e
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user