Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 57d4b4ea authored by Ken Sumrall's avatar Ken Sumrall Committed by Android (Google) Code Review
Browse files

Merge "Fix handle_opendir() in the sdcard daemon" into klp-dev

parents 7e64c143 3a876880
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -1321,6 +1321,8 @@ static int handle_opendir(struct fuse* fuse, struct fuse_handler* handler,
        return -errno;
        return -errno;
    }
    }
    out.fh = ptr_to_id(h);
    out.fh = ptr_to_id(h);
    out.open_flags = 0;
    out.padding = 0;
    fuse_reply(fuse, hdr->unique, &out, sizeof(out));
    fuse_reply(fuse, hdr->unique, &out, sizeof(out));
    return NO_STATUS;
    return NO_STATUS;
}
}