1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-02 20:23:50 +03:00

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

This commit is contained in:
Andrew Tridgell
2005-02-03 08:20:31 +00:00
committed by Gerald (Jerry) Carter
parent 5f40ff0f55
commit 90535bab95
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;
}