From 658797c83a9b656493c8911026f12a5397cbd5ba Mon Sep 17 00:00:00 2001 From: Jesse Gross Date: Tue, 30 Mar 2010 18:40:01 -0400 Subject: [PATCH] netdev-linux: Don't free a member of a struct. We allocate struct netdev_linux which contains struct netdev but free the netdev. In practice this makes no difference because the netdev is the first member of the struct but we should be correct anyways. --- lib/netdev-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/netdev-linux.c b/lib/netdev-linux.c index 1b69a20d6..833f60544 100644 --- a/lib/netdev-linux.c +++ b/lib/netdev-linux.c @@ -974,7 +974,7 @@ netdev_linux_destroy(struct netdev_dev *netdev_dev_) destroy_patch(netdev_dev); } - free(netdev_dev_); + free(netdev_dev); } static int -- 2.43.0