[media] v4l2-device: fix 'use-after-freed' oops

Fix a bug in v4l2_device_unregister where the sd pointer can be dereferenced
after it was freed.

Normally the i2c adapter is removed before this function is called. Removing
the adapter will also unregister all subdevs on that adapter, so generally
v4l2_device_unregister has nothing to do. However, in the case of a platform
i2c bus that bus is generally not freed.

In that case, after freeing the i2c subdevice the code will fall into the
second block when it tests if the subdev is a SPI device. But by that time
the subdev is already freed and the kernel oopses.

The fix is trivial: continue with the loop after freeing the i2c or spi
subdevice.

Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Reported-by: Daniel Drake <dsd@laptop.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

authored by Hans Verkuil and committed by Mauro Carvalho Chehab 672dcd54 46b63377

+2
+2
drivers/media/video/v4l2-device.c
··· 100 100 is a platform bus, then it is never deleted. */ 101 101 if (client) 102 102 i2c_unregister_device(client); 103 + continue; 103 104 } 104 105 #endif 105 106 #if defined(CONFIG_SPI) ··· 109 108 110 109 if (spi) 111 110 spi_unregister_device(spi); 111 + continue; 112 112 } 113 113 #endif 114 114 }