wimax: i2400: Fix memory leak in i2400m_op_rfkill_sw_toggle
authorNavid Emamdoost <navid.emamdoost@gmail.com>
Sat, 26 Oct 2019 04:53:30 +0000 (23:53 -0500)
committerDavid S. Miller <davem@davemloft.net>
Tue, 29 Oct 2019 23:20:25 +0000 (16:20 -0700)
commit6f3ef5c25cc762687a7341c18cbea5af54461407
treef2e91bbce5a3819a21f94101c4039ae6968c28e5
parent63a41746827cb16dc6ad0d4d761ab4e7dda7a0c3
wimax: i2400: Fix memory leak in i2400m_op_rfkill_sw_toggle

In the implementation of i2400m_op_rfkill_sw_toggle() the allocated
buffer for cmd should be released before returning. The
documentation for i2400m_msg_to_dev() says when it returns the buffer
can be reused. Meaning cmd should be released in either case. Move
kfree(cmd) before return to be reached by all execution paths.

Fixes: 2507e6ab7a9a ("wimax: i2400: fix memory leak")
Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/wimax/i2400m/op-rfkill.c