summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: dc415e5)
raw | patch | inline | side by side (parent: dc415e5)
author | Pavel Rochnyack <pavel2000@ngs.ru> | |
Wed, 4 Oct 2017 16:59:46 +0000 (23:59 +0700) | ||
committer | Pavel Rochnyack <pavel2000@ngs.ru> | |
Wed, 4 Oct 2017 16:59:46 +0000 (23:59 +0700) |
src/curl_xml.c | patch | blob | history |
diff --git a/src/curl_xml.c b/src/curl_xml.c
index f5a29b0fa80bdeb225f0f89c60103f3db705716b..c99e3f1df058946446469861b54b2317a742e8f2 100644 (file)
--- a/src/curl_xml.c
+++ b/src/curl_xml.c
return -1;
} /* }}} cx_if_not_text_node */
+/*
+ * Returned value should be freed with xmlFree().
+ */
static char *cx_get_text_node_value(xmlXPathContextPtr xpath_ctx, /* {{{ */
char *expr, const char *from_option) {
xmlXPathObjectPtr values_node_obj = cx_evaluate_xpath(xpath_ctx, expr);
/* endptr = */ NULL);
}
- sfree(node_value);
+ xmlFree(node_value);
/* We have reached here which means that
* we have got something to work */
else
sstrncpy(vl->type_instance, node_value, sizeof(vl->type_instance));
- sfree(node_value);
+ xmlFree(node_value);
} else if (xpath->instance_prefix != NULL)
sstrncpy(vl->type_instance, xpath->instance_prefix,
sizeof(vl->type_instance));
return -1;
sstrncpy(vl->plugin_instance, node_value, sizeof(vl->plugin_instance));
- sfree(node_value);
+ xmlFree(node_value);
}
return 0;