From 1e94c4240cb12fcbb65831e608a9408e1e76fd87 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Tue, 23 Jan 2018 23:47:44 -0500 Subject: [PATCH] undo removal of alloca in builtinimport.c --- py/builtinimport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/builtinimport.c b/py/builtinimport.c index 0caba74f46..b76ea00bd8 100644 --- a/py/builtinimport.c +++ b/py/builtinimport.c @@ -330,7 +330,7 @@ mp_obj_t mp_builtin___import__(size_t n_args, const mp_obj_t *args) { } uint new_mod_l = (mod_len == 0 ? (size_t)(p - this_name) : (size_t)(p - this_name) + 1 + mod_len); - char new_mod[new_mod_l]; + char *new_mod = alloca(new_mod_l); memcpy(new_mod, this_name, p - this_name); if (mod_len != 0) { new_mod[p - this_name] = '.';