Merge fuse_ll into fuse_session (part 6)
authorNikolaus Rath <Nikolaus@rath.org>
Wed, 5 Oct 2016 03:50:30 +0000 (20:50 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 5 Oct 2016 03:50:30 +0000 (20:50 -0700)
Fixup cuse_lowlevel_new().

lib/cuse_lowlevel.c

index 28dd2a33db19e584d54aff5a6301a444d673bac7..c9aa47dfb048b4aed80e896e28beaa5e97847265 100644 (file)
@@ -152,7 +152,6 @@ struct fuse_session *cuse_lowlevel_new(struct fuse_args *args,
        struct fuse_lowlevel_ops lop;
        struct cuse_data *cd;
        struct fuse_session *se;
-       struct fuse_session *ll;
 
        cd = cuse_prep_data(ci, clop);
        if (!cd)
@@ -175,8 +174,7 @@ struct fuse_session *cuse_lowlevel_new(struct fuse_args *args,
                free(cd);
                return NULL;
        }
-       ll = se;
-       ll->cuse_data = cd;
+       se->cuse_data = cd;
 
        return se;
 }