Tests: validate_xml: leak of xml document instance
[lttng-tools.git] / tests / utils / xml-utils / validate_xml.cpp
index b185161b5178b84ce9e80bb4c2a4cfd0027174bc..f75c8e47b063a1a46de2e38a30087467a0ebf25f 100644 (file)
@@ -145,10 +145,12 @@ static int validate_xml(const char *xml_file_path, struct validation_ctx *ctx)
 
        ret = CMD_SUCCESS;
 end:
+       if (doc) {
+               xmlFreeDoc(doc);
+       }
        return ret;
-
-
 }
+
 int main(int argc, char **argv)
 {
        int ret;
This page took 0.025283 seconds and 4 git commands to generate.