From dc1cdfb8f8b3130aaff6e92eaf1042e52e8a1a3a Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 30 Oct 2009 15:09:39 +0000 Subject: --- src/core/interpret.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core') diff --git a/src/core/interpret.c b/src/core/interpret.c index e471e72..9a7eef4 100644 --- a/src/core/interpret.c +++ b/src/core/interpret.c @@ -83,10 +83,12 @@ Interpret* interpret_new(List *p_list_token, Hash *p_hash_syms) { Interpret *p_interpret = malloc(sizeof(Interpret)); + /* No subprocess */ if (p_hash_syms != NULL) { p_interpret->p_scope = scope_new(p_hash_syms); p_interpret->b_scope_delete = true; + /* Subprocess */ } else { p_interpret->p_scope = NULL; p_interpret->b_scope_delete = false; -- cgit v1.2.3