iwinfo: plug memory leak in nl80211 backend, nl80211_close() did not put the family pointer
SVN-Revision: 29723
This commit is contained in:
parent
e3a21eb9f8
commit
0cb05017c6
2 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (C) 2010-2011 Jo-Philipp Wich <xm@subsignal.org>
|
||||
# Copyright (C) 2010-2012 Jo-Philipp Wich <xm@subsignal.org>
|
||||
#
|
||||
# This is free software, licensed under the GPL 2 license.
|
||||
#
|
||||
|
@ -7,7 +7,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libiwinfo
|
||||
PKG_RELEASE:=22
|
||||
PKG_RELEASE:=23
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
PKG_CONFIG_DEPENDS := \
|
||||
|
|
|
@ -559,6 +559,9 @@ void nl80211_close(void)
|
|||
{
|
||||
if (nls)
|
||||
{
|
||||
if (nls->nl80211)
|
||||
genl_family_put(nls->nl80211);
|
||||
|
||||
if (nls->nl_sock)
|
||||
nl_socket_free(nls->nl_sock);
|
||||
|
||||
|
|
Loading…
Reference in a new issue