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);