From 58d05d94a37c53e555fdef40fb206ec230595141 Mon Sep 17 00:00:00 2001 From: Werner LEMBERG Date: Tue, 15 Mar 2005 22:07:46 +0000 Subject: [PATCH] * src/devices/grohtml/post-html.cpp (html_printer::lookahead_for_tables): End .ce properly to avoid a segfault. --- ChangeLog | 6 ++++++ src/devices/grohtml/post-html.cpp | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index fa849fa1..29ceb26a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-03-15 Gaius Mulley + + * src/devices/grohtml/post-html.cpp + (html_printer::lookahead_for_tables): End .ce properly to avoid a + segfault. + 2005-03-15 Werner LEMBERG makeinfo 4.8 doesn't produce good HTML output from groff.texinfo. diff --git a/src/devices/grohtml/post-html.cpp b/src/devices/grohtml/post-html.cpp index 4f6fa212..65249713 100644 --- a/src/devices/grohtml/post-html.cpp +++ b/src/devices/grohtml/post-html.cpp @@ -3622,6 +3622,7 @@ void html_printer::lookahead_for_tables (void) } else if (g->is_ce() && (start_of_table != NULL)) { add_table_end("*** CE ***"); start_of_table->remember_table(tbl); + tbl = new html_table(&html, -1); start_of_table = NULL; last = NULL; } else if (g->is_ta()) { -- 2.11.4.GIT