From 52e4727abf68fff6d13e6fdd5c53c7c147e3c1db Mon Sep 17 00:00:00 2001 From: James Bursa Date: Tue, 15 Jul 2003 18:06:31 +0000 Subject: [project @ 2003-07-15 18:06:31 by bursa] Temporarily stop freeing box->href, incorrect and crashing. svn path=/import/netsurf/; revision=220 --- render/box.c | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/render/box.c b/render/box.c index a4f9073a6..708f70c16 100644 --- a/render/box.c +++ b/render/box.c @@ -490,9 +490,14 @@ struct css_style * box_get_style(struct content ** stylesheet, } if ((s = (char *) xmlGetProp(n, (const xmlChar *) "height"))) { - style->height.height = CSS_HEIGHT_LENGTH; - style->height.length.unit = CSS_UNIT_PX; - style->height.length.value = atof(s); + if (strrchr(s, '%')) { + /* tne specification doesn't make clear what + * percentage heights mean, so ignore them */ + } else { + style->height.height = CSS_HEIGHT_LENGTH; + style->height.length.unit = CSS_UNIT_PX; + style->height.length.value = atof(s); + } xmlFree(s); } @@ -553,9 +558,9 @@ struct result box_a(xmlNode *n, struct status *status, { struct box *box; char *s; - box = box_create(style, status->href, status->title); if ((s = (char *) xmlGetProp(n, (const xmlChar *) "href"))) status->href = s; + box = box_create(style, status->href, status->title); return (struct result) {box, 1}; } @@ -1342,13 +1347,13 @@ void box_free_box(struct box *box) xmlFree(box->title); /* only free href if we're the top most user */ - if (box->href != 0) + /*if (box->href != 0) { if (box->parent == 0) xmlFree(box->href); else if (box->parent->href != box->href) xmlFree(box->href); - } + }*/ /* TODO: free object_params */ } -- cgit v1.2.3