Use the unprotected allocation.

This commit is contained in:
Samium Gromoff 2009-04-20 20:36:29 +04:00 committed by Juan Jose Garcia Ripoll
parent da102ce9bd
commit 590e1c95e9

View file

@ -298,7 +298,7 @@ _ecl_alloc_env()
/* We have not set up any environment. Hence, we cannot call ecl_alloc()
* because it will need to stop interrupts and currently we rely on
* the environment for that */
output = GC_MALLOC_IGNORE_OFF_PAGE(sizeof(*output));
output = ecl_alloc_unprotected(sizeof(*output));
} else {
output = ecl_alloc(sizeof(*output));
}