summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-07-15 18:06:31 +0000
committerJames Bursa <james@netsurf-browser.org>2003-07-15 18:06:31 +0000
commit52e4727abf68fff6d13e6fdd5c53c7c147e3c1db (patch)
treec231c437382bf2d45bcfb4bdb2d8d4724c1c0634
parent9fec06838d4efc51ac2a2e69ae16ac34e4125ca0 (diff)
downloadnetsurf-52e4727abf68fff6d13e6fdd5c53c7c147e3c1db.tar.gz
netsurf-52e4727abf68fff6d13e6fdd5c53c7c147e3c1db.tar.bz2
[project @ 2003-07-15 18:06:31 by bursa]
Temporarily stop freeing box->href, incorrect and crashing. svn path=/import/netsurf/; revision=220
-rw-r--r--render/box.c17
1 files 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 */
}