Commit 521223a2 authored by Henry Ptasinski's avatar Henry Ptasinski Committed by Greg Kroah-Hartman

staging: brcm80211: remove unnecessary null check

kfree(NULL) is safe, and the rest of the cleanup should be done regardless
to make sure the state is consistent.
Signed-off-by: default avatarHenry Ptasinski <henryp@broadcom.com>
Reviewed-by: default avatarRoland Vossen <rvossen@broadcom.com>
Reviewed-by: default avatarArend van Spriel <arend@broadcom.com>
Reviewed-by: default avatarFranky Lin <frankyl@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 202a208b
...@@ -5567,11 +5567,9 @@ static void dhdsdio_release_malloc(dhd_bus_t *bus) ...@@ -5567,11 +5567,9 @@ static void dhdsdio_release_malloc(dhd_bus_t *bus)
if (bus->dhd && bus->dhd->dongle_reset) if (bus->dhd && bus->dhd->dongle_reset)
return; return;
if (bus->rxbuf) { kfree(bus->rxbuf);
kfree(bus->rxbuf); bus->rxctl = bus->rxbuf = NULL;
bus->rxctl = bus->rxbuf = NULL; bus->rxlen = 0;
bus->rxlen = 0;
}
kfree(bus->databuf); kfree(bus->databuf);
bus->databuf = NULL; bus->databuf = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment