staging: rtl8188eu: fix null dereference when kzalloc fails
authorConnor Kuehl <connor.kuehl@canonical.com>
Fri, 27 Sep 2019 21:44:15 +0000 (14:44 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 1 Oct 2019 06:22:44 +0000 (08:22 +0200)
commit955c1532a34305f2f780b47f0c40cc7c65500810
tree2b8770f657063c446b6d0eee521af1739164b63f
parent2eed19b99c8e95ff87afe6c140ed895c3fac5937
staging: rtl8188eu: fix null dereference when kzalloc fails

If kzalloc() returns NULL, the error path doesn't stop the flow of
control from entering rtw_hal_read_chip_version() which dereferences the
null pointer. Fix this by adding a 'goto' to the error path to more
gracefully handle the issue and avoid proceeding with initialization
steps that we're no longer prepared to handle.

Also update the debug message to be more consistent with the other debug
messages in this function.

Addresses-Coverity: ("Dereference after null check")

Signed-off-by: Connor Kuehl <connor.kuehl@canonical.com>
Link: https://lore.kernel.org/r/20190927214415.899-1-connor.kuehl@canonical.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/os_dep/usb_intf.c