summaryrefslogtreecommitdiffstats
path: root/lib/route/link.c
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2014-03-31 11:21:06 (GMT)
committerThomas Haller <thaller@redhat.com>2014-03-31 11:23:48 (GMT)
commit34bfce62150d07cf9894f2d9cbd0c989a203ea52 (patch)
treed4be18fc563f1aa9692a1c56deb04397ce72cc3a /lib/route/link.c
parentbaa2cadd02086a053eb140c91d7f0681112ac370 (diff)
downloadlibnl-34bfce62150d07cf9894f2d9cbd0c989a203ea52.zip
libnl-34bfce62150d07cf9894f2d9cbd0c989a203ea52.tar.gz
libnl-34bfce62150d07cf9894f2d9cbd0c989a203ea52.tar.bz2
link: Catch missing io_free() implementations
Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'lib/route/link.c')
-rw-r--r--lib/route/link.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/route/link.c b/lib/route/link.c
index d609b17..3263096 100644
--- a/lib/route/link.c
+++ b/lib/route/link.c
@@ -194,6 +194,10 @@ static void release_link_info(struct rtnl_link *link)
if (io != NULL) {
if (io->io_free)
io->io_free(link);
+ else {
+ /* Catch missing io_free() implementations */
+ BUG_ON(link->l_info);
+ }
rtnl_link_info_ops_put(io);
link->l_info_ops = NULL;
}