From 39462f9afb7512d3d8109e17b78a303b20c557ab Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 17 Nov 2009 14:55:41 -0500 Subject: Fix crash due to uninitialized timeout variable This slipped through in previous patches. Fixes #283 --- server/db/sysdb_ops.c | 1 + 1 file changed, 1 insertion(+) (limited to 'server/db') diff --git a/server/db/sysdb_ops.c b/server/db/sysdb_ops.c index 7e232a4d7..4a44f280a 100644 --- a/server/db/sysdb_ops.c +++ b/server/db/sysdb_ops.c @@ -2181,6 +2181,7 @@ struct tevent_req *sysdb_add_group_send(TALLOC_CTX *mem_ctx, state->name = name; state->gid = gid; state->attrs = attrs; + state->cache_timeout = cache_timeout; if (domain->id_max != 0 && gid != 0 && (gid < domain->id_min || gid > domain->id_max)) { -- cgit