summaryrefslogtreecommitdiff
path: root/test/tree.c
diff options
context:
space:
mode:
authorAnthony J. Bentley <anthony@cathet.us>2013-04-26 18:58:59 -0600
committerVincent Sanders <vince@netsurf-browser.org>2013-04-27 08:42:47 +0100
commitff31fd617c976832422206a9d36ecd395f45cbaf (patch)
treeaea444f52ce76aa4133cf93f48e241a4b5fbecf0 /test/tree.c
parentfdf0e1a4dfc42fe0e661bb85eb813e8b187e80c9 (diff)
downloadlibhubbub-ff31fd617c976832422206a9d36ecd395f45cbaf.tar.gz
libhubbub-ff31fd617c976832422206a9d36ecd395f45cbaf.tar.bz2
Don't use the nonportable alloca() during tests.
Diffstat (limited to 'test/tree.c')
-rw-r--r--test/tree.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/tree.c b/test/tree.c
index 85fd21a..d8319e6 100644
--- a/test/tree.c
+++ b/test/tree.c
@@ -91,7 +91,7 @@ static int run_test(int argc, char **argv, unsigned int CHUNK_SIZE)
hubbub_parser_optparams params;
FILE *fp;
size_t len, origlen;
- uint8_t *buf = alloca(CHUNK_SIZE);
+ uint8_t *buf = malloc(CHUNK_SIZE);
const char *charset;
hubbub_charset_source cssource;
bool passed = true;
@@ -144,6 +144,8 @@ static int run_test(int argc, char **argv, unsigned int CHUNK_SIZE)
fclose(fp);
+ free(buf);
+
charset = hubbub_parser_read_charset(parser, &cssource);
printf("Charset: %s (from %d)\n", charset, cssource);