From 48d1759374e95bbc0c59fa2c87e9e8122f0e1273 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Sun, 22 May 2005 19:09:43 +0000 Subject: [project @ 2005-05-22 19:09:43 by bursa] Fix crash due to uninitialised variable. svn path=/import/netsurf/; revision=1731 --- render/html.c | 1 + 1 file changed, 1 insertion(+) diff --git a/render/html.c b/render/html.c index 83ed33a9c..0c350342f 100644 --- a/render/html.c +++ b/render/html.c @@ -74,6 +74,7 @@ bool html_create(struct content *c, const char *params[]) html->stylesheet_count = 0; html->stylesheet_content = 0; html->style = 0; + html->working_stylesheet = 0; html->object_count = 0; html->object = 0; html->forms = 0; -- cgit v1.2.3