From: Krzysztof Kozlowski Date: Mon, 3 Aug 2015 05:57:30 +0000 (+0900) Subject: HID: hid-input: Fix accessing freed memory during device disconnect X-Git-Tag: omap-for-v4.3/fixes-merge-window~114^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0621809e37936e7c2b3eac9165cf2aad7f9189eb;p=pandora-kernel.git HID: hid-input: Fix accessing freed memory during device disconnect During unbinding the driver was dereferencing a pointer to memory already freed by power_supply_unregister(). Driver was freeing its internal description of battery through pointers stored in power_supply structure. However, because the core owns the power supply instance, after calling power_supply_unregister() this memory is freed and the driver cannot access these members. Fix this by storing the pointer to internal description of battery in a local variable before calling power_supply_unregister(), so the pointer remains valid. Signed-off-by: Krzysztof Kozlowski Reported-by: H.J. Lu Fixes: 297d716f6260 ("power_supply: Change ownership from driver to core") Cc: Reviewed-by: Dmitry Torokhov Signed-off-by: Jiri Kosina --- Reading git-diff-tree failed