Re: [PATCH] virxml: Fix possible memory leak in virXMLNodeContentString()

2021-03-18 Thread Michal Privoznik
On 3/17/21 6:01 PM, Kristina Hanicova wrote: Previously, if xml node passed to the virXMLNodeContentString() was not of type XML_ELEMENT_NODE, @ret could have caused a memory leak because xmlNodeGetContent() works for other types of nodes as well. Signed-off-by: Kristina Hanicova --- src/util

[PATCH] virxml: Fix possible memory leak in virXMLNodeContentString()

2021-03-17 Thread Kristina Hanicova
Previously, if xml node passed to the virXMLNodeContentString() was not of type XML_ELEMENT_NODE, @ret could have caused a memory leak because xmlNodeGetContent() works for other types of nodes as well. Signed-off-by: Kristina Hanicova --- src/util/virxml.c | 4 +++- 1 file changed, 3 insertions