summaryrefslogtreecommitdiffstats
path: root/testing/libnl/libnl-1.1-minor-leaks.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-11-30 13:00:24 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-11-30 13:00:24 +0000
commit0a1e38d00d24abcdde874e3bb0024e908d936c35 (patch)
tree03cc24cb0e71cc791bdd1e9bceeaa5bd96bca905 /testing/libnl/libnl-1.1-minor-leaks.patch
parenta34674bc575828efe6c983d039d4a28931994fb4 (diff)
testing/libnl: new aport
Library for applications dealing with netlink sockets http://people.suug.ch/~tgr/libnl
Diffstat (limited to 'testing/libnl/libnl-1.1-minor-leaks.patch')
-rw-r--r--testing/libnl/libnl-1.1-minor-leaks.patch40
1 files changed, 40 insertions, 0 deletions
diff --git a/testing/libnl/libnl-1.1-minor-leaks.patch b/testing/libnl/libnl-1.1-minor-leaks.patch
new file mode 100644
index 00000000000..855a6ab3912
--- /dev/null
+++ b/testing/libnl/libnl-1.1-minor-leaks.patch
@@ -0,0 +1,40 @@
+From: Patrick McHardy <kaber@trash.net>
+Date: Fri, 18 Jan 2008 16:55:49 +0000 (+0100)
+Subject: [LIBNL]: Fix minor memleaks on exit
+X-Git-Url: http://git.kernel.org/?p=libs%2Fnetlink%2Flibnl.git;a=commitdiff_plain;h=b64f15d6f947839236fa276d473d238f8c9b9d57;hp=e91bb2ffb090955d443e643a25b250bf3d33534a
+
+[LIBNL]: Fix minor memleaks on exit
+
+Make valgrind happy ...
+
+Signed-off-by: Patrick McHardy <kaber@trash.net>
+---
+
+diff --git a/lib/route/route_utils.c b/lib/route/route_utils.c
+index a12d169..1386cda 100644
+--- a/lib/route/route_utils.c
++++ b/lib/route/route_utils.c
+@@ -63,6 +63,11 @@ static void __init init_routing_table_names(void)
+ add_routing_table_name(RT_TABLE_LOCAL, "local");
+ };
+
++static void __exit release_routing_table_names(void)
++{
++ __trans_list_clear(&table_names);
++}
++
+ int rtnl_route_read_table_names(const char *path)
+ {
+ __trans_list_clear(&table_names);
+@@ -104,6 +109,11 @@ static void __init init_proto_names(void)
+ add_proto_name(RTPROT_STATIC, "static");
+ };
+
++static void __exit release_proto_names(void)
++{
++ __trans_list_clear(&proto_names);
++}
++
+ int rtnl_route_read_protocol_names(const char *path)
+ {
+ __trans_list_clear(&proto_names);