-
Note: This could be considered either a documentation problem or a code problem.
The user-provided buffer to tidySaveString is not null-terminated. In tidyDocSaveString the user-provided buffer is filled with the bytes in the outbuf and the size is set to the space used in outbuf. However, outbuf is not null terminated, so if the user provides a buffer which is the size returned in buflen...
2009-11-07 00:25:23 UTC by kevinoid
-
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 999 days (the time period specified by
the administrator of this Tracker).
2009-11-02 02:20:15 UTC by sf-robot
-
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 999 days (the time period specified by
the administrator of this Tracker).
2009-10-31 02:20:32 UTC by sf-robot
-
krusch committed patchset 1496 of module tidy to the HTML Tidy CVS repository, changing 1 files.
2009-10-27 19:27:49 UTC by krusch
-
Patch from krusch
RCS file: /cvsroot/tidy/tidy/src/parser.c,v
retrieving revision 1.187
diff -r1.187 parser.c
3471,3472c3471,3475
< TY_(UngetToken)( doc );
< node = TY_(InferredTag)(doc, TidyTag_TABLE);
---
> /* http://tidy.sf.net/issue/2855621 */
> if (node->type != EndTag) {
> TY_(UngetToken)( doc...
2009-10-23 19:41:56 UTC by chengas123
-
Possible enhancement: Discard element for which only an end tag is found, rather than generating a corresponding start tag.
2009-10-20 22:58:25 UTC by krusch
-
input:
...
2009-10-19 07:34:13 UTC by jo_kruger
-
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 999 days (the time period specified by
the administrator of this Tracker).
2009-10-17 02:21:03 UTC by sf-robot
-
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 999 days (the time period specified by
the administrator of this Tracker).
2009-10-17 02:20:55 UTC by sf-robot
-
The id attribute is actually not discarded. Rather, what happens is that a new table element is inserted to make the valid, and the -- then -- extraneous table element with the id attribute is discarded.
line 1 column 7 - Warning: isn't allowed in elements
line 1 column 13 - Warning: inserting implicit
line 1 column 13 - Warning: discarding unexpected
line 1...
2009-10-10 13:07:33 UTC by krusch