]> git.baikalelectronics.ru Git - kernel.git/commit
staging: wlan-ng: fix exit return when sme->key_idx >= NUM_WEPKEYS
authorColin Ian King <colin.king@canonical.com>
Mon, 14 Oct 2019 11:02:01 +0000 (12:02 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 Oct 2019 13:40:08 +0000 (15:40 +0200)
commit243a96c466c694eeb6ec600d858c1ccae067a713
tree85511b7ab17251e9fb6576e233101dd0686aaf9b
parent1eba4f95a783c5666881b1e9b4c3de4b05c4f502
staging: wlan-ng: fix exit return when sme->key_idx >= NUM_WEPKEYS

Currently the exit return path when sme->key_idx >= NUM_WEPKEYS is via
label 'exit' and this checks if result is non-zero, however result has
not been initialized and contains garbage.  Fix this by replacing the
goto with a return with the error code.

Addresses-Coverity: ("Uninitialized scalar variable")
Fixes: d324faeb36d2 ("Staging: wlan-ng: replace switch-case statements with macro")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Cc: stable <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20191014110201.9874-1-colin.king@canonical.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/cfg80211.c