swconfig: swlib.c: Fix another memleak
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> SVN-Revision: 46275
This commit is contained in:
parent
dc2c89c64c
commit
7a04fd0e3a
@ -529,10 +529,13 @@ struct switch_attr *swlib_lookup_attr(struct switch_dev *dev,
|
|||||||
static void
|
static void
|
||||||
swlib_priv_free(void)
|
swlib_priv_free(void)
|
||||||
{
|
{
|
||||||
|
if (family)
|
||||||
|
nl_object_put((struct nl_object*)family);
|
||||||
if (cache)
|
if (cache)
|
||||||
nl_cache_free(cache);
|
nl_cache_free(cache);
|
||||||
if (handle)
|
if (handle)
|
||||||
nl_socket_free(handle);
|
nl_socket_free(handle);
|
||||||
|
family = NULL;
|
||||||
handle = NULL;
|
handle = NULL;
|
||||||
cache = NULL;
|
cache = NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user