diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-02-20 16:38:45 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-02-20 16:38:45 +0000 |
commit | c40748abd7f911b3c622600bd23b8517bd8f09c4 (patch) | |
tree | 3921bd77bcb57f36365cff93fb2bbe54af19b1d1 /lib/fuse_mt.c | |
parent | b59586199b5c53fa7002e9e1e6accc08a515f420 (diff) | |
download | libfuse-c40748abd7f911b3c622600bd23b8517bd8f09c4.tar.gz |
fix
Diffstat (limited to 'lib/fuse_mt.c')
-rw-r--r-- | lib/fuse_mt.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/fuse_mt.c b/lib/fuse_mt.c index f1a2e5c..40da6ed 100644 --- a/lib/fuse_mt.c +++ b/lib/fuse_mt.c @@ -114,5 +114,8 @@ void __fuse_loop_mt(struct fuse *f, fuse_processor_t proc, void *data) void fuse_loop_mt(struct fuse *f) { + if(f == NULL) + return; + __fuse_loop_mt(f, (fuse_processor_t) __fuse_process_cmd, NULL); } |