All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lib/librte_vhost: fix memory leak
@ 2017-01-04  3:57 Yong Wang
  2017-01-04  4:02 ` Yuanhan Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Yong Wang @ 2017-01-04  3:57 UTC (permalink / raw)
  To: yuanhan.liu; +Cc: dev, Yong Wang

In function vhost_new_device(), current code dose not free 'dev'
in "i == MAX_VHOST_DEVICE" condition statements. It will lead to a
memory leak.

Signed-off-by: Yong Wang <wang.yong19@zte.com.cn>
---
 lib/librte_vhost/vhost.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/librte_vhost/vhost.c b/lib/librte_vhost/vhost.c
index 31825b8..e415093 100644
--- a/lib/librte_vhost/vhost.c
+++ b/lib/librte_vhost/vhost.c
@@ -250,6 +250,7 @@ struct virtio_net *
 	if (i == MAX_VHOST_DEVICE) {
 		RTE_LOG(ERR, VHOST_CONFIG,
 			"Failed to find a free slot for new device.\n");
+		rte_free(dev);
 		return -1;
 	}
 
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-01-04  6:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-04  3:57 [PATCH] lib/librte_vhost: fix memory leak Yong Wang
2017-01-04  4:02 ` Yuanhan Liu
2017-01-04  6:55   ` 答复: " wang.yong19

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.