fixed order of freeing calls

(stolen from ec76ae4f7e40e99443ad421a85ec4d3fb7359bf3)
This commit is contained in:
Frédéric Péters 2008-07-22 12:09:06 +00:00
parent 29e87584e9
commit 6f1adef11c
1 changed files with 2 additions and 2 deletions

View File

@ -164,9 +164,9 @@ lasso_profile_get_request_type_from_soap_msg(const gchar *soap)
message(G_LOG_LEVEL_WARNING, "Unknown node name : %s", name);
}
xmlFreeDoc(doc);
xmlXPathFreeContext(xpathCtx);
xmlXPathFreeObject(xpathObj);
xmlXPathFreeContext(xpathCtx);
xmlFreeDoc(doc);
return type;
}