OSDN Git Service

platform driver: fix use-after-free in platform_device_del()
authorJerome Marchand <jmarchan@redhat.com>
Mon, 25 Jul 2016 14:13:32 +0000 (16:13 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 31 Aug 2016 13:13:56 +0000 (15:13 +0200)
commitc90aab9c96c2a7f7bf3f7a54167dc5c0ba2b178c
treee8fddbf53d62ad80abdad94327453010567bef2c
parentbea5b158ff0da9c7246ff391f754f5f38e34577a
platform driver: fix use-after-free in platform_device_del()

In platform_device_del(), the device is still used after a call to
device_del(). At this point there is no guarantee that the device is
still there and there could be a use-after-free access. Move the
call to device_remove_properties() before device_del() to fix that.

Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/platform.c