diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-08-13 02:02:54 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-08-13 02:02:54 +0000 |
commit | a027153046b2eb80e5c884c4ceadc4507844ac85 (patch) | |
tree | bcf60b7e81a15943d427601e1e1ace869a428b98 /source4/smbd | |
parent | b05a2aad5434b188b624db97fb53dc67534a24c6 (diff) | |
download | samba-a027153046b2eb80e5c884c4ceadc4507844ac85.tar.gz samba-a027153046b2eb80e5c884c4ceadc4507844ac85.tar.xz samba-a027153046b2eb80e5c884c4ceadc4507844ac85.zip |
check for an invalid TID in reply_exit()
(This used to be commit fca5a1e89db126c6f7d7ac3caa841918147ef614)
Diffstat (limited to 'source4/smbd')
-rw-r--r-- | source4/smbd/reply.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/smbd/reply.c b/source4/smbd/reply.c index 07fcf06a0c6..bc9a3b6a069 100644 --- a/source4/smbd/reply.c +++ b/source4/smbd/reply.c @@ -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); |