iwinfo: plug memory leak in nl80211 backend, nl80211_close() did not put the family pointer

SVN-Revision: 29723
This commit is contained in:
Jo-Philipp Wich 2012-01-13 00:54:25 +00:00
parent e3a21eb9f8
commit 0cb05017c6
2 changed files with 5 additions and 2 deletions

View File

@ -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 := \

View File

@ -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);