diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-01-15 17:31:18 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-01-15 20:47:38 +0100 |
commit | 131213e675b0e07d8d47b70564428c9584addd18 (patch) | |
tree | 064d748415f0867d6d92fa0dc7fe2a0dbd0ab186 /src | |
parent | 6dd62227d77d000f3a6de42ee153274884a3c7f4 (diff) | |
download | sssd-131213e675b0e07d8d47b70564428c9584addd18.tar.gz sssd-131213e675b0e07d8d47b70564428c9584addd18.tar.xz sssd-131213e675b0e07d8d47b70564428c9584addd18.zip |
LDAP: avoid complex realloc logic in save_rfc2307bis_group_memberships
https://fedorahosted.org/sssd/ticket/1761
The function tried to be smart and realloc only when needed, but that
only lead to hard-to find bugs where the logic would not allocate the
proper space. Remove the reallocation and prefer readability over speed
in this case.
Diffstat (limited to 'src')
-rw-r--r-- | src/providers/ldap/sdap_async_initgroups.c | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/src/providers/ldap/sdap_async_initgroups.c b/src/providers/ldap/sdap_async_initgroups.c index 66be76e66..e9d1f3cc9 100644 --- a/src/providers/ldap/sdap_async_initgroups.c +++ b/src/providers/ldap/sdap_async_initgroups.c @@ -1793,7 +1793,6 @@ save_rfc2307bis_group_memberships(struct sdap_initgr_rfc2307bis_state *state) int num_added; int i; int grp_count; - int grp_count_old = 0; char **add = NULL; tmp_ctx = talloc_new(NULL); @@ -1833,12 +1832,10 @@ save_rfc2307bis_group_memberships(struct sdap_initgr_rfc2307bis_state *state) * nesting limit. This array must be NULL terminated. */ for (grp_count = 0; iter->add[grp_count]; grp_count++); - if (grp_count > grp_count_old) { - add = talloc_realloc(tmp_ctx, add, char*, grp_count + 1); - if (add == NULL) { - ret = ENOMEM; - goto done; - } + add = talloc_zero_array(tmp_ctx, char *, grp_count + 1); + if (add == NULL) { + ret = ENOMEM; + goto done; } num_added = 0; @@ -1852,11 +1849,6 @@ save_rfc2307bis_group_memberships(struct sdap_initgr_rfc2307bis_state *state) } } - /* Swap old and new group counter. */ - grp_count ^= grp_count_old; - grp_count_old ^= grp_count; - grp_count ^= grp_count_old; - if (num_added == 0) { add = NULL; } else { |