aboutsummaryrefslogtreecommitdiff
path: root/sshfs.c
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2017-07-12 16:43:23 +0200
committerNikolaus Rath <Nikolaus@rath.org>2017-07-12 16:45:17 +0200
commit82766d1093daccc933bfcdae44d3634db61806fe (patch)
tree1af965563e394eb5d08fc7c27576c500e9dc5a7c /sshfs.c
parent6f6491cd1362e00c353d1edc918ba187c4427411 (diff)
downloadsshfs-82766d1093daccc933bfcdae44d3634db61806fe.tar
sshfs-82766d1093daccc933bfcdae44d3634db61806fe.tar.gz
sshfs-82766d1093daccc933bfcdae44d3634db61806fe.tar.bz2
sshfs-82766d1093daccc933bfcdae44d3634db61806fe.zip
sftp_readdir_async(): don't access request when it may have been freed
Fixes: #7
Diffstat (limited to 'sshfs.c')
-rw-r--r--sshfs.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sshfs.c b/sshfs.c
index a20f727..f9ae9eb 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -2073,11 +2073,16 @@ static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
outstanding--;
if (done) {
+ /* We need to cache want_reply, since processing
+ thread may free req right after unlock() if
+ want_reply == 0 */
+ int want_reply;
pthread_mutex_lock(&sshfs.lock);
if (sshfs_req_pending(req))
req->want_reply = 0;
+ want_reply = req->want_reply;
pthread_mutex_unlock(&sshfs.lock);
- if (!req->want_reply)
+ if (!want_reply)
continue;
}