1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-22 16:59:09 +03:00

r10709: fixed a crash bug rather similar to the one volker found in the dcerpc

code, where a stream_terminate_connection() while processing a request
can cause a later defererence of the connection structure to die.
(This used to be commit efbcb0f741)
This commit is contained in:
Andrew Tridgell
2005-10-04 10:18:07 +00:00
committed by Gerald (Jerry) Carter
parent 63d4cb4802
commit a04f65b1c7
2 changed files with 25 additions and 5 deletions

View File

@ -38,6 +38,9 @@ struct ldapsrv_connection {
struct data_blob_list_item *send_queue;
BOOL processing;
/* connection should be terminated if non-null */
const char *terminate;
};
struct ldapsrv_call {