1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

r14435: return after an error

This commit is contained in:
Andrew Tridgell 2006-03-15 05:53:15 +00:00 committed by Gerald (Jerry) Carter
parent 507def57cb
commit 40e5bfdb0f

View File

@ -170,6 +170,7 @@ static void session_request_handler(struct smb2_request *req)
state->req = smb2_session_setup_send(session, &state->io);
if (state->req == NULL) {
composite_error(c, NT_STATUS_NO_MEMORY);
return;
}
state->req->async.fn = session_request_handler;