swconfig: swlib.c: Fix another memleak

Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>

SVN-Revision: 46275
This commit is contained in:
Felix Fietkau 2015-07-08 15:59:38 +00:00
parent dc2c89c64c
commit 7a04fd0e3a

View File

@ -529,10 +529,13 @@ struct switch_attr *swlib_lookup_attr(struct switch_dev *dev,
static void
swlib_priv_free(void)
{
if (family)
nl_object_put((struct nl_object*)family);
if (cache)
nl_cache_free(cache);
if (handle)
nl_socket_free(handle);
family = NULL;
handle = NULL;
cache = NULL;
}