Author: Tukaram Laxmeshwar Subject: while updating child->requests in domain were not memset after memory allocation for state. This resulted in core. Bugzilla: bnc#416598 Index: source/nsswitch/winbindd_dual.c =================================================================== --- source/nsswitch/winbindd_dual.c.orig 2008-08-21 16:55:53.000000000 +0530 +++ source/nsswitch/winbindd_dual.c 2008-08-21 16:55:54.000000000 +0530 @@ -117,7 +117,7 @@ SMB_ASSERT(continuation != NULL); - state = TALLOC_P(mem_ctx, struct winbindd_async_request); + state = TALLOC_ZERO_P(mem_ctx, struct winbindd_async_request); if (state == NULL) { DEBUG(0, ("talloc failed\n"));