mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-18 23:32:17 -08:00
Merge branch 'develop' into 'develop'
Fix for #276 See merge request !30
This commit is contained in:
commit
77a5583cde
1 changed files with 1 additions and 1 deletions
|
|
@ -201,7 +201,7 @@ _ecl_dealloc_env(cl_env_ptr env)
|
|||
ecl_internal_error("Unable to deallocate environment structure.");
|
||||
#else
|
||||
# if defined(ECL_USE_GUARD_PAGE)
|
||||
if (!VirtualFree(env, sizeof(*env), MEM_RELEASE))
|
||||
if (!VirtualFree(env, 0, MEM_RELEASE))
|
||||
ecl_internal_error("Unable to deallocate environment structure.");
|
||||
# endif
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue