1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r5193: make sure we mark the event dead when we free it on a dead connection

(This used to be commit 90535bab95)
This commit is contained in:
Andrew Tridgell 2005-02-03 08:20:31 +00:00 committed by Gerald (Jerry) Carter
parent c3f8ef9424
commit a097414ed2
2 changed files with 2 additions and 1 deletions

View File

@ -663,6 +663,7 @@ static void smbsrv_recv(struct stream_connection *conn, struct timeval t, uint16
status = receive_smb_request(smb_conn, t);
if (NT_STATUS_IS_ERR(status)) {
talloc_free(conn->event.fde);
conn->event.fde = NULL;
smbsrv_terminate_connection(smb_conn, nt_errstr(status));
return;
}

View File

@ -97,10 +97,10 @@ static void stream_new_connection(struct event_context *ev,
srv_conn->private = stream_socket->private;
srv_conn->model_ops = stream_socket->model_ops;
srv_conn->event.ctx = ev;
srv_conn->socket = sock;
srv_conn->server_id = server_id;
srv_conn->ops = stream_socket->ops;
srv_conn->event.ctx = ev;
srv_conn->event.fde = event_add_fd(ev, srv_conn, socket_get_fd(sock),
EVENT_FD_READ,
stream_io_handler, srv_conn);