summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2013-08-30 10:56:04 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-08-30 14:14:35 +0200
commit0e9563e10a023092b6086a673a266323e9b1d603 (patch)
treedac5982a696d32dd451a99d40bdc63c9ef7fcdb3 /src/providers/ldap
parent3dc0400cf25f23b4947340ca591e4a15b89ca331 (diff)
downloadsssd-0e9563e10a023092b6086a673a266323e9b1d603.tar.gz
sssd-0e9563e10a023092b6086a673a266323e9b1d603.tar.xz
sssd-0e9563e10a023092b6086a673a266323e9b1d603.zip
SIGCHLD handler: do not call callback when pvt data was freed
https://fedorahosted.org/sssd/ticket/1992
Diffstat (limited to 'src/providers/ldap')
-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 f2412f9e5..6db0dbf23 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;
}