diff options
author | Pavel Březina <pbrezina@redhat.com> | 2013-08-27 11:11:05 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-08-28 13:46:38 +0200 |
commit | b525aa57f138f67624038c4a1bdeca9042bcf2f0 (patch) | |
tree | 4f44c25233a4f4e4420b6d33b62fa595cb662681 /src/providers/ldap | |
parent | e526ea590b031e3257511b02a887a0379602578c (diff) | |
download | sssd-1-5.tar.gz sssd-1-5.tar.xz sssd-1-5.zip |
SIGCHLD handler: do not call callback when pvt data where freedsssd-1-5
https://fedorahosted.org/sssd/ticket/1992
Diffstat (limited to 'src/providers/ldap')
-rw-r--r-- | src/providers/ldap/sdap_child_helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_child_helpers.c b/src/providers/ldap/sdap_child_helpers.c index 5a15e661e..1af71285f 100644 --- a/src/providers/ldap/sdap_child_helpers.c +++ b/src/providers/ldap/sdap_child_helpers.c @@ -121,7 +121,7 @@ static errno_t sdap_fork_child(struct tevent_context *ev, fd_nonblocking(child->read_from_child_fd); fd_nonblocking(child->write_to_child_fd); - ret = child_handler_setup(ev, pid, NULL, NULL); + ret = child_handler_setup(ev, pid, NULL, NULL, NULL); if (ret != EOK) { return ret; } |