media: davinci: vpif_capture: fix potential double free
authorEvgeny Novikov <novikov@ispras.ru>
Thu, 23 Jul 2020 17:04:53 +0000 (19:04 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 6 Aug 2020 09:32:02 +0000 (11:32 +0200)
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>
drivers/media/platform/davinci/vpif_capture.c

index d9ec439..72a0e94 100644 (file)
@@ -1482,8 +1482,6 @@ probe_out:
                /* Unregister video device */
                video_unregister_device(&ch->video_dev);
        }
-       kfree(vpif_obj.sd);
-       v4l2_device_unregister(&vpif_obj.v4l2_dev);
 
        return err;
 }