Skip to content

Commit

Permalink
Prevent using uninitialized "group_name" in done section.
Browse files Browse the repository at this point in the history
Coverity ID: 11927
  • Loading branch information
Lukas Slebodnik authored and jhrozek committed Jul 25, 2013
1 parent 0337b71 commit 134106a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/ldap/sdap_async_groups.c
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ static int sdap_save_group(TALLOC_CTX *memctx,
{
struct ldb_message_element *el;
struct sysdb_attrs *group_attrs;
const char *group_name;
const char *group_name = NULL;
gid_t gid;
errno_t ret;
char *usn_value = NULL;
Expand Down

0 comments on commit 134106a

Please sign in to comment.