$OpenBSD: patch-test_parse-auto_c,v 1.1 2013/05/03 07:32:34 bentley Exp $
--- test/parse-auto.c.orig	Thu Apr 25 14:36:19 2013
+++ test/parse-auto.c	Thu Apr 25 14:36:43 2013
@@ -409,7 +409,7 @@ void run_test(const uint8_t *data, size_t len, exp_ent
 
 		if (error == CSS_OK) {
 			css_stylesheet *import;
-			char *buf = alloca(lwc_string_length(url) + 1);
+			char *buf = malloc(lwc_string_length(url) + 1);
 
 			memcpy(buf, lwc_string_data(url), 
 					lwc_string_length(url));
@@ -425,6 +425,8 @@ void run_test(const uint8_t *data, size_t len, exp_ent
 
 			error = CSS_IMPORTS_PENDING;
 			lwc_string_unref(url);
+
+			free(buf);
 		}
 	}
 
