Hi Johannes,

Subject: [PATCH 2/4] iw: Avoid possible memory leak for cb. cb got memory from
 nl_cb_alloc() but not doing free

Signed-off-by: Amit Khatri <[email protected]>
Signed-off-by: Rahul Jain <[email protected]>
---
 iw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iw.c b/iw.c
index dc99566..1e913b6 100644
--- a/iw.c
+++ b/iw.c
@@ -477,8 +477,8 @@ static int __handle_cmd(struct nl80211_state *state, enum 
id_input idby,
        while (err > 0)
                nl_recvmsgs(state->nl_sock, cb);
  out:
-       nl_cb_put(cb);
  out_free_msg:
+       nl_cb_put(cb);
        nlmsg_free(msg);
        return err;
  nla_put_failure:
-- 
1.9.1

Reply via email to