media: davinci: vpif_capture: fix potential double free
authorEvgeny Novikov <novikov@ispras.ru>
Thu, 23 Jul 2020 17:04:53 +0000 (19:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 3 Sep 2020 09:29:23 +0000 (11:29 +0200)
commit22dcf9b459e49635b2560989e7b6109c57963222
tree527045757b7da09dd5fb585f6d39db0c4e2ad359
parentf2231eeadd1b0642630b8522e475d1009b9592cf
media: davinci: vpif_capture: fix potential double free

[ Upstream commit 602649eadaa0c977e362e641f51ec306bc1d365d ]

In case of errors vpif_probe_complete() releases memory for vpif_obj.sd
and unregisters the V4L2 device. But then this is done again by
vpif_probe() itself. The patch removes the cleaning from
vpif_probe_complete().

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Evgeny Novikov <novikov@ispras.ru>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/media/platform/davinci/vpif_capture.c