summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-10-26 19:54:08 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-10-26 19:54:08 -0400
commitc621a6e8c4beffb2faf70404b843cf93def8cc1b (patch)
tree3a30a4ddbfb0b5daf761c9d75da58c3b3e010aa1 /src
parent572f86ce2faf7532c30751e5c5f9893468550eba (diff)
[ring] Remove one assertion
Better dealing with corrupt history file, etc.
Diffstat (limited to 'src')
-rw-r--r--src/ring.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/ring.c b/src/ring.c
index 3c0a0bb..84cd6a9 100644
--- a/src/ring.c
+++ b/src/ring.c
@@ -236,9 +236,13 @@ _vte_ring_thaw_row (VteRing *ring, gulong position, VteRowData *row, gboolean tr
p = q;
if (G_UNLIKELY (cell.attr.columns == 0)) {
- /* Combine it */
- g_assert (row->len);
- row->cells[row->len - 1].c = _vte_unistr_append_unichar (row->cells[row->len - 1].c, cell.c);
+ if (G_LIKELY (row->len)) {
+ /* Combine it */
+ row->cells[row->len - 1].c = _vte_unistr_append_unichar (row->cells[row->len - 1].c, cell.c);
+ } else {
+ cell.attr.columns = 1;
+ _vte_row_data_append (row, &cell);
+ }
} else {
_vte_row_data_append (row, &cell);
if (cell.attr.columns > 1) {