[project @ 2004-02-11 20:51:34 by bursa]

Fix crash related to floats.

svn path=/import/netsurf/; revision=535
This commit is contained in:
James Bursa 2004-02-11 20:51:34 +00:00
parent 9aabe954c0
commit add94ad038
1 changed files with 2 additions and 1 deletions

View File

@ -523,7 +523,7 @@ struct box * layout_line(struct box *first, int width, int *y,
struct box * left;
struct box * right;
struct box * b;
struct box * c = NULL;
struct box * c;
struct box * d;
struct box * fl;
int move_y = 0;
@ -598,6 +598,7 @@ struct box * layout_line(struct box *first, int width, int *y,
}
}
c = first;
/* pass 2: place boxes in line */
for (x = x_previous = 0, b = first; x <= x1 - x0 && b != 0; b = b->next) {
if (b->type == BOX_INLINE || b->type == BOX_INLINE_BLOCK) {