You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
staging: ft1000: Fix goto error logic.
Fix goto error logic which could lead to kernel panics because kthread_stop() is called in not correct error conditions. Seen it sometimes when dsp_reload() fails then I got kernel panic. Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e999fb0574
commit
4960b8fe1b
@@ -204,9 +204,9 @@ static int ft1000_probe(struct usb_interface *interface,
|
||||
|
||||
return 0;
|
||||
|
||||
err_load:
|
||||
kthread_stop(pft1000info->pPollThread);
|
||||
err_thread:
|
||||
kthread_stop(pft1000info->pPollThread);
|
||||
err_load:
|
||||
kfree(pFileStart);
|
||||
err_fw:
|
||||
kfree(ft1000dev);
|
||||
|
||||
Reference in New Issue
Block a user