aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-07-07 13:46:05 +0000
committerJohn Crispin <john@openwrt.org>2015-07-07 13:46:05 +0000
commit294907aa3ab96d8fbee05082ef4db3f886eb0321 (patch)
treed47deffdacf2b2389cac2283cc7299ab09cf9fbb /package
parent2b9bdf4d6f665db76dc3f56efb2bb74fe2a7a3d0 (diff)
downloadupstream-294907aa3ab96d8fbee05082ef4db3f886eb0321.tar.gz
upstream-294907aa3ab96d8fbee05082ef4db3f886eb0321.tar.bz2
upstream-294907aa3ab96d8fbee05082ef4db3f886eb0321.zip
swconfig: swlib.c: free portmaps in swlib_free()
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com> SVN-Revision: 46231
Diffstat (limited to 'package')
-rw-r--r--package/network/config/swconfig/src/swlib.c14
-rw-r--r--package/network/config/swconfig/src/swlib.h2
2 files changed, 15 insertions, 1 deletions
diff --git a/package/network/config/swconfig/src/swlib.c b/package/network/config/swconfig/src/swlib.c
index f74c093ef4..d7e570e05d 100644
--- a/package/network/config/swconfig/src/swlib.c
+++ b/package/network/config/swconfig/src/swlib.c
@@ -755,12 +755,26 @@ swlib_free_attributes(struct switch_attr **head)
*head = NULL;
}
+static void
+swlib_free_port_map(struct switch_dev *dev)
+{
+ int i;
+
+ if (!dev || !dev->maps)
+ return;
+
+ for (i = 0; i < dev->ports; i++)
+ free(dev->maps[i].segment);
+ free(dev->maps);
+}
+
void
swlib_free(struct switch_dev *dev)
{
swlib_free_attributes(&dev->ops);
swlib_free_attributes(&dev->port_ops);
swlib_free_attributes(&dev->vlan_ops);
+ swlib_free_port_map(dev);
free(dev->name);
free(dev->alias);
free(dev);
diff --git a/package/network/config/swconfig/src/swlib.h b/package/network/config/swconfig/src/swlib.h
index 28bdd7f7cb..2b42c14760 100644
--- a/package/network/config/swconfig/src/swlib.h
+++ b/package/network/config/swconfig/src/swlib.h
@@ -158,7 +158,7 @@ struct switch_port {
struct switch_portmap {
unsigned int virt;
- const char *segment;
+ char *segment;
};
/**