mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-05 10:46:58 +00:00
rtlwifi: potential forever loop in rtl92de_hw_init()
"i" should be an int here because we are trying to use it to count to 10000. The original code looks like it could hang in a forever loop. Signed-off-by: Dan Carpenter <error27@gmail.com> Acked-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
ab049fbf5e
commit
9a4ba833a2
@ -908,7 +908,8 @@ int rtl92de_hw_init(struct ieee80211_hw *hw)
|
||||
struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
|
||||
struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
|
||||
bool rtstatus = true;
|
||||
u8 tmp_u1b, i;
|
||||
u8 tmp_u1b;
|
||||
int i;
|
||||
int err;
|
||||
unsigned long flags;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user