The logic is testing if num_links==0 at the wrong place. Due to
that, a backlink may be kept without removal, causing KASAN
to complain about usage after free during either entity or
link removal.

Signed-off-by: Mauro Carvalho Chehab <[email protected]>
---
 drivers/media/media-entity.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/media/media-entity.c b/drivers/media/media-entity.c
index d7243cb56c79..d9d42fab22ad 100644
--- a/drivers/media/media-entity.c
+++ b/drivers/media/media-entity.c
@@ -662,13 +662,13 @@ static void __media_entity_remove_link(struct 
media_entity *entity,
                if (link->source->entity == entity)
                        remote->num_backlinks--;
 
-               if (--remote->num_links == 0)
-                       break;
-
                /* Remove the remote link */
                list_del(&rlink->list);
                media_gobj_remove(&rlink->graph_obj);
                kfree(rlink);
+
+               if (--remote->num_links == 0)
+                       break;
        }
        list_del(&link->list);
        media_gobj_remove(&link->graph_obj);
-- 
2.5.0

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to