diff options
author | Ondrej Kos <okos@redhat.com> | 2013-05-02 16:59:55 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-05-03 12:21:50 +0200 |
commit | 11fd679eb2edabd139c9016e2b7d2085ca3aac5d (patch) | |
tree | 393531dafc344101b1893753873c1dee73fa8600 /src/lib | |
parent | fcc79e09b7c1777bef90874956bd89ac9c3b5832 (diff) | |
download | sssd-11fd679eb2edabd139c9016e2b7d2085ca3aac5d.tar.gz sssd-11fd679eb2edabd139c9016e2b7d2085ca3aac5d.tar.xz sssd-11fd679eb2edabd139c9016e2b7d2085ca3aac5d.zip |
IDMAP: Fix variable initialization
Before the recent changes, the variable was set to 0 too because it used
to be part of a structure allocated with talloc_zero.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/idmap/sss_idmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/idmap/sss_idmap.c b/src/lib/idmap/sss_idmap.c index 24506c68f..3a39aaefd 100644 --- a/src/lib/idmap/sss_idmap.c +++ b/src/lib/idmap/sss_idmap.c @@ -239,7 +239,7 @@ enum idmap_error_code sss_idmap_calculate_range(struct sss_idmap_ctx *ctx, { id_t max_slices; id_t orig_slice; - id_t new_slice; + id_t new_slice = 0; id_t min; id_t max; id_t idmap_lower; |