
29 Oct
2014
29 Oct
'14
6:50 p.m.
virFileReadAll returns a chunk of memory that needs to be free'd when done Signed-off-by: John Ferlan <jferlan@redhat.com> --- src/util/virnetdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/virnetdev.c b/src/util/virnetdev.c index 4fea4cb..0c9c1f9 100644 --- a/src/util/virnetdev.c +++ b/src/util/virnetdev.c @@ -2200,6 +2200,7 @@ static int virNetDevGetMcastList(const char *ifname, ret = 0; cleanup: + VIR_FREE(buf); VIR_FREE(entry); return ret; -- 1.9.3