diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-07-21 07:59:37 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-07-21 07:59:37 +0000 |
commit | 9b813af8631729cf7f626f0cbac08863bb315863 (patch) | |
tree | 1ccd7493b978e83e85f27063d88045dbdddec7bb /lib/fuse_mt.c | |
parent | e2aa2e243d729e29ad67f1b30aa3392ca9a9cdb2 (diff) | |
download | libfuse-9b813af8631729cf7f626f0cbac08863bb315863.tar.gz |
fixes
Diffstat (limited to 'lib/fuse_mt.c')
-rw-r--r-- | lib/fuse_mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuse_mt.c b/lib/fuse_mt.c index c9fe63c..c9d85a8 100644 --- a/lib/fuse_mt.c +++ b/lib/fuse_mt.c @@ -22,7 +22,7 @@ static int context_ref; static struct fuse_context *mt_getcontext(void) { struct fuse_context *ctx; - + ctx = (struct fuse_context *) pthread_getspecific(context_key); if (ctx == NULL) { ctx = (struct fuse_context *) malloc(sizeof(struct fuse_context)); |