aboutsummaryrefslogtreecommitdiff
path: root/src/cssparser.cc
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-29 16:24:44 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-29 16:24:44 +0100
commitcf67233a08169d16537640b43009122b788c1cf8 (patch)
tree4a173ffd0135e061eb02229837e5123b756cddf9 /src/cssparser.cc
parent7ae85804df37613f2bbbc3bbf62856fc42631e81 (diff)
free font names from style="" attributes (found by Jeremy)
Diffstat (limited to 'src/cssparser.cc')
-rw-r--r--src/cssparser.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc
index 87718d31..bd5949bd 100644
--- a/src/cssparser.cc
+++ b/src/cssparser.cc
@@ -1186,7 +1186,7 @@ void a_Css_parse(CssContext * context,
CssPropertyList *a_Css_parse_declaration(const char *buf, int buflen)
{
- CssPropertyList *props = new CssPropertyList ();
+ CssPropertyList *props = new CssPropertyList (true);
CssParser parser;
parser.context = NULL;