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

Commit df9c4a01 authored by Daniel Micay's avatar Daniel Micay
Browse files

sdcard: avoid benign unsigned overflow

Change-Id: Id9427b4e01602bba31f8958b8d491b092b31482b
parent 58505e17
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -822,7 +822,8 @@ static int handle_forget(struct fuse* fuse, struct fuse_handler* handler,
            hdr->nodeid, node ? node->name : "?");
    if (node) {
        __u64 n = req->nlookup;
        while (n--) {
        while (n) {
            n--;
            release_node_locked(node);
        }
    }