summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap_child_helpers.c
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2013-06-24 14:53:27 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-07-17 15:03:03 +0200
commit800c9402f74b1587aeddeb8160fb7d775b7cde25 (patch)
tree5e68cc148894d9f2efa413316481e5a883daaf7f /src/providers/ldap/sdap_child_helpers.c
parent83b13337756f697606072b77ef350e04023c717e (diff)
downloadsssd-800c9402f74b1587aeddeb8160fb7d775b7cde25.tar.gz
sssd-800c9402f74b1587aeddeb8160fb7d775b7cde25.tar.xz
sssd-800c9402f74b1587aeddeb8160fb7d775b7cde25.zip
SIGCHLD handler: do not call callback when pvt data where freed
https://fedorahosted.org/sssd/ticket/1992
Diffstat (limited to 'src/providers/ldap/sdap_child_helpers.c')
-rw-r--r--src/providers/ldap/sdap_child_helpers.c2
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 fd4d10f46..e57313442 100644
--- a/src/providers/ldap/sdap_child_helpers.c
+++ b/src/providers/ldap/sdap_child_helpers.c
@@ -119,7 +119,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;
}