In the Linux kernel, the following vulnerability has been resolved:
drm/mcde: Fix refcount leak in mcdedsibind
Every iteration of foreachavailablechildofnode() decrements the reference counter of the previous node. There is no decrement when break out from the loop and results in refcount leak. Add missing ofnode_put() to fix this.