diff options
author | Jeremy Allison <jra@samba.org> | 2010-06-10 13:17:35 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-06-10 13:17:35 -0700 |
commit | b5638a05601ce8206a85c2f3625f8894ed0e0a6f (patch) | |
tree | e8baf3ff8ceab674e54f5942784f2c8b70912484 /source3/smbd/server.c | |
parent | 405a0c558c023a752e88e52b7e40048d3b7090c5 (diff) | |
download | samba-b5638a05601ce8206a85c2f3625f8894ed0e0a6f.tar.gz samba-b5638a05601ce8206a85c2f3625f8894ed0e0a6f.tar.xz samba-b5638a05601ce8206a85c2f3625f8894ed0e0a6f.zip |
Don't use the autofree context for the globals. This causes child smbd's forked
by modules to crash due to destructors being called (found when using the vfs_aio_fork
module with smb2).
Jeremy.
Diffstat (limited to 'source3/smbd/server.c')
-rw-r--r-- | source3/smbd/server.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 184b613810d..a7297d68630 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -50,7 +50,12 @@ int get_client_fd(void) struct event_context *smbd_event_context(void) { if (!smbd_event_ctx) { - smbd_event_ctx = event_context_init(talloc_autofree_context()); + /* + * Note we MUST use the NULL context here, not the + * autofree context, to avoid side effects in forked + * children exiting. + */ + smbd_event_ctx = event_context_init(NULL); } if (!smbd_event_ctx) { smb_panic("Could not init smbd event context"); |