]> git.itanic.dy.fi Git - linux-stable/commit
staging: rtl8192e: fix potential use after free
authorPan Bian <bianpan2016@163.com>
Tue, 5 Nov 2019 14:49:11 +0000 (22:49 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 5 Dec 2019 14:27:11 +0000 (15:27 +0100)
commit083c654f82bbb039056687de8deae08c248d577f
treebe800084b76b1473c08e25597f5a0157499c033d
parent16851325cc14ae77763e1873d7902291194b1fe1
staging: rtl8192e: fix potential use after free

commit b7aa39a2ed0112d07fc277ebd24a08a7b2368ab9 upstream.

The variable skb is released via kfree_skb() when the return value of
_rtl92e_tx is not zero. However, after that, skb is accessed again to
read its length, which may result in a use after free bug. This patch
fixes the bug by moving the release operation to where skb is never
used later.

Signed-off-by: Pan Bian <bianpan2016@163.com>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Cc: stable <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/1572965351-6745-1-git-send-email-bianpan2016@163.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/rtl_core.c