summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
bf7886d)
prefix should always be free'd in this function.
1402045 Resource leak
The system resource will not be reclaimed and reused, reducing the
future availability of the resource.
In register_lttng_namespace: Leak of memory or pointers to system
resources (CWE-404)
Reported-by: Coverity Scan
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
}
ret = xmlXPathRegisterNs(xpathCtx, prefix, ns);
}
ret = xmlXPathRegisterNs(xpathCtx, prefix, ns);
xmlFree(ns);
return ret;
}
xmlFree(ns);
return ret;
}