Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ install_manifest.txt
# eclipse IDE config files
.cproject
.project

*.cbp
2 changes: 1 addition & 1 deletion src/ds3_requests.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ static ds3_error* _get_request_xml_nodes(
char* root_element_name) {
xmlNodePtr root;

xmlDocPtr doc = xmlParseMemory((const char*) xml_blob->data, xml_blob->len);
xmlDocPtr doc = xmlReadMemory((const char*) xml_blob->data, xml_blob->len, NULL, NULL, XML_PARSE_HUGE);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fyi this is an auto-gened file

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, we'll need that change reflected there as well.

if (doc == NULL) {
char* message = g_strconcat("Failed to parse response document. The actual response is: ", xml_blob->data, NULL);
g_byte_array_free(xml_blob, TRUE);
Expand Down