From: Aditya Pakki Date: Sun, 14 Jun 2020 03:58:41 +0000 (+0200) Subject: media: st-delta: Fix reference count leak in delta_run_work X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=57cc666d36adc7b45e37ba4cd7bc4e44ec4c43d7;p=linux.git media: st-delta: Fix reference count leak in delta_run_work delta_run_work() calls delta_get_sync() that increments the reference counter. In case of failure, decrement the reference count by calling delta_put_autosuspend(). Signed-off-by: Aditya Pakki Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/sti/delta/delta-v4l2.c b/drivers/media/platform/sti/delta/delta-v4l2.c index 2503224eeee51..c691b3d81549d 100644 --- a/drivers/media/platform/sti/delta/delta-v4l2.c +++ b/drivers/media/platform/sti/delta/delta-v4l2.c @@ -954,8 +954,10 @@ static void delta_run_work(struct work_struct *work) /* enable the hardware */ if (!dec->pm) { ret = delta_get_sync(ctx); - if (ret) + if (ret) { + delta_put_autosuspend(ctx); goto err; + } } /* decode this access unit */