Skip to content

Commit a7b9d46

Browse files
author
root
committed
xml entities filter some UTF8 accent text
1 parent 5f0295b commit a7b9d46

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/struct/buffer.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,8 +507,6 @@ buffer *buffer_encode_xml_entities_str(const char * str)
507507

508508
for( /* empty */ ; *str ; str++) {
509509

510-
if ((int) *str < 32 && (*str != '\n' && *str != '\r' && *str != ' ')) break;
511-
512510
switch(*str) {
513511
case '&':
514512
buffer_add_str(buf, "&amp;");

0 commit comments

Comments
 (0)