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

check for an invalid TID in reply_exit()

(This used to be commit fca5a1e89db126c6f7d7ac3caa841918147ef614)
This commit is contained in:
Andrew Tridgell 2003-08-13 02:02:54 +00:00
parent b05a2aad54
commit a027153046

View File

@ -1187,6 +1187,11 @@ void reply_exit(struct request_context *req)
req->async.send_fn = reply_simple_send;
if (!req->conn) {
req_reply_error(req, NT_STATUS_INVALID_HANDLE);
return;
}
/* call backend */
req->async.status = req->conn->ntvfs_ops->exit(req);