diff options
author | Jack Mitchell <jack.mitchell@dbbroadcast.co.uk> | 2013-01-15 10:00:46 +0000 |
---|---|---|
committer | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-01-16 09:42:12 +0000 |
commit | 1e1afc219b92fab6ef86b8ff9c003020982ce8df (patch) | |
tree | 2672f89dd23e67800c6cddea3de2709a003441fe /meta-webserver/recipes-httpd/hiawatha/files/xslt-fix.patch | |
parent | a69aa98293bba340ce9161b4e890e085d982c778 (diff) | |
download | meta-openembedded-1e1afc219b92fab6ef86b8ff9c003020982ce8df.tar.gz |
hiawatha: update to 8.7
Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
Diffstat (limited to 'meta-webserver/recipes-httpd/hiawatha/files/xslt-fix.patch')
-rw-r--r-- | meta-webserver/recipes-httpd/hiawatha/files/xslt-fix.patch | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/meta-webserver/recipes-httpd/hiawatha/files/xslt-fix.patch b/meta-webserver/recipes-httpd/hiawatha/files/xslt-fix.patch deleted file mode 100644 index 81c5d1b245..0000000000 --- a/meta-webserver/recipes-httpd/hiawatha/files/xslt-fix.patch +++ /dev/null | |||
@@ -1,71 +0,0 @@ | |||
1 | Upstream-Status: Backport | ||
2 | Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk> | ||
3 | --- | ||
4 | src/xslt.c | 19 +++++++------------ | ||
5 | 1 file changed, 7 insertions(+), 12 deletions(-) | ||
6 | |||
7 | diff --git a/src/xslt.c b/src/xslt.c | ||
8 | index 9d8d31a..58ca52d 100644 | ||
9 | --- a/src/xslt.c | ||
10 | +++ b/src/xslt.c | ||
11 | @@ -23,6 +23,7 @@ | ||
12 | #include <libxslt/transform.h> | ||
13 | #include <libxslt/xsltutils.h> | ||
14 | #include "libstr.h" | ||
15 | +#include "liblist.h" | ||
16 | #include "send.h" | ||
17 | #include "log.h" | ||
18 | #ifdef ENABLE_TOMAHAWK | ||
19 | @@ -343,10 +344,10 @@ bool can_transform_with_xslt(t_session *session) { | ||
20 | static int apply_xslt_sheet(t_session *session, xmlDocPtr data_xml) { | ||
21 | xmlDocPtr style_xml, result_xml; | ||
22 | xsltStylesheetPtr xslt; | ||
23 | - xmlOutputBufferPtr output; | ||
24 | + xmlChar *raw_xml; | ||
25 | char value[VALUE_SIZE + 1]; | ||
26 | const char **params; | ||
27 | - int result = 200; | ||
28 | + int result = 200, raw_size; | ||
29 | |||
30 | /* Read XML data | ||
31 | */ | ||
32 | @@ -396,14 +397,8 @@ static int apply_xslt_sheet(t_session *session, xmlDocPtr data_xml) { | ||
33 | xsltFreeStylesheet(xslt); | ||
34 | return 500; | ||
35 | } | ||
36 | - if ((output = xmlAllocOutputBuffer(NULL)) == NULL) { | ||
37 | - xmlFreeDoc(result_xml); | ||
38 | - xsltFreeStylesheet(xslt); | ||
39 | - return 500; | ||
40 | - } | ||
41 | - if (xsltSaveResultTo(output, result_xml, xslt) == -1) { | ||
42 | + if (xsltSaveResultToString(&raw_xml, &raw_size, result_xml, xslt) == -1) { | ||
43 | log_file_error(session, session->file_on_disk, "transformation error"); | ||
44 | - xmlOutputBufferClose(output); | ||
45 | xmlFreeDoc(result_xml); | ||
46 | xsltFreeStylesheet(xslt); | ||
47 | return 500; | ||
48 | @@ -414,17 +409,17 @@ static int apply_xslt_sheet(t_session *session, xmlDocPtr data_xml) { | ||
49 | value[VALUE_SIZE] = '\0'; | ||
50 | if (send_buffer(session, hs_conlen, 16) == -1) { | ||
51 | result = -1; | ||
52 | - } else if (snprintf(value, VALUE_SIZE, "%d\r\n\r\n", output->buffer->use) == -1) { | ||
53 | + } else if (snprintf(value, VALUE_SIZE, "%d\r\n\r\n", raw_size) == -1) { | ||
54 | result = -1; | ||
55 | } else if (send_buffer(session, value, strlen(value)) == -1) { | ||
56 | result = -1; | ||
57 | - } else if (send_buffer(session, (char*)output->buffer->content, output->buffer->use) == -1) { | ||
58 | + } else if (send_buffer(session, (char*)raw_xml, raw_size) == -1) { | ||
59 | result = -1; | ||
60 | } | ||
61 | |||
62 | /* Free buffers | ||
63 | */ | ||
64 | - xmlOutputBufferClose(output); | ||
65 | + xmlFree(raw_xml); | ||
66 | xmlFreeDoc(result_xml); | ||
67 | xsltFreeStylesheet(xslt); | ||
68 | |||
69 | -- | ||
70 | 1.8.0.1 | ||
71 | |||