summaryrefslogtreecommitdiff
path: root/render/html.c
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2008-08-11 23:32:16 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2008-08-11 23:32:16 +0000
commitd1bfc81d22200034d4cd9acedd9a51ffbc959a91 (patch)
tree16c9c5e503bc850645e80270eb502d3871652f02 /render/html.c
parent065533f90e7878c32d268f2c49d8c1f9f7e83b0f (diff)
downloadnetsurf-d1bfc81d22200034d4cd9acedd9a51ffbc959a91.tar.gz
netsurf-d1bfc81d22200034d4cd9acedd9a51ffbc959a91.tar.bz2
C89
svn path=/trunk/netsurf/; revision=5053
Diffstat (limited to 'render/html.c')
-rw-r--r--render/html.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/render/html.c b/render/html.c
index 814eb3864..7df0816e6 100644
--- a/render/html.c
+++ b/render/html.c
@@ -1008,9 +1008,10 @@ bool html_head(struct content *c, xmlNode *head)
if (!c->title && strcmp((const char *) node->name,
"title") == 0) {
xmlChar *title = xmlNodeGetContent(node);
+ char *title2;
if (!title)
return false;
- char *title2 = squash_whitespace((const char *) title);
+ title2 = squash_whitespace((const char *) title);
xmlFree(title);
if (!title2)
return false;