summaryrefslogtreecommitdiff
path: root/src/parse/properties.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-04-16 00:27:34 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-04-16 00:27:34 +0000
commitb3018f84339a953a08333338d06a3d68506ee17d (patch)
tree1adbcafd3c43a11dcb31b9bf2da0255b67b202d0 /src/parse/properties.c
parent71327cd21e3dcc793dd6e0cf99f5295e58e0322c (diff)
downloadlibcss-b3018f84339a953a08333338d06a3d68506ee17d.tar.gz
libcss-b3018f84339a953a08333338d06a3d68506ee17d.tar.bz2
Flag use of alloca -- these need to die.
Why are we interning lowercased versions of strings, anyway? svn path=/trunk/libcss/; revision=7102
Diffstat (limited to 'src/parse/properties.c')
-rw-r--r--src/parse/properties.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parse/properties.c b/src/parse/properties.c
index 6294a6e..f2ca4b0 100644
--- a/src/parse/properties.c
+++ b/src/parse/properties.c
@@ -2859,6 +2859,7 @@ css_error parse_font_family(css_language *c,
vector, &temp_ctx);
}
+ /** \todo Don't use alloca */
buf = alloca(len);
p = buf;
@@ -6041,6 +6042,7 @@ css_error parse_voice_family(css_language *c,
vector, &temp_ctx);
}
+ /** \todo Don't use alloca */
buf = alloca(len);
p = buf;