From b46dc345730a3f34047ad54c59984948df6172b3 Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Mon, 18 Jan 2016 13:48:00 -0300 Subject: [PATCH] Temporarily disable the HTML ENTITY DECODE transformation --- src/actions/transformations/html_entity_decode.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/actions/transformations/html_entity_decode.cc b/src/actions/transformations/html_entity_decode.cc index f50df899..2bc1ed5a 100644 --- a/src/actions/transformations/html_entity_decode.cc +++ b/src/actions/transformations/html_entity_decode.cc @@ -42,7 +42,10 @@ std::string HtmlEntityDecode::evaluate(std::string value, } char *tmp = strdup(value.c_str()); - html_entities_decode_inplace((unsigned char *)tmp, value.size()); + + // FIXME: html_entities_decode_inplace is not working as expected + // temporary disabled to perform the audit_log tests. + //html_entities_decode_inplace((unsigned char *)tmp, value.size()); std::string ret(""); ret.assign(tmp); free(tmp);