RE: Segfault in HTML Tidy

> The following code makes HTML Tidy segfault on my glibc 2.1 system:

> <body>
> <b><p>test</p>      <!-- crash on this line -->
> </body>

Maybe something with glibc?  I ran the Windows executable on your markup and it
did this (without crashing):

	<body>
	<b>test<br>
	<br>
	</b>
	</body>

If I set "enclose-text: yes" (wraps loose text in BODY in Ps) it instead does
this:

	<body>
	<p>test</p>

	<p></p>
	</body>

(Note: it put's that empty P element in even though "drop-empty-paras: yes" was
set.)

/Jelks

Received on Saturday, 27 November 1999 13:09:34 UTC