X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fbsd-os.c;h=0fda392511858fd43505ee101d32a06db00bf7cd;hb=1de12891f900d156ed035a097561ecd7755a256a;hp=d4f857472f643f3a01b9d1051f193c841e03b87a;hpb=a41c057bfe9d8b0b53d2765b8559f18327f28813;p=sbcl.git diff --git a/src/runtime/bsd-os.c b/src/runtime/bsd-os.c index d4f8574..0fda392 100644 --- a/src/runtime/bsd-os.c +++ b/src/runtime/bsd-os.c @@ -169,7 +169,7 @@ is_valid_lisp_addr(os_vm_address_t addr) struct thread *th; if(in_range_p(addr, READ_ONLY_SPACE_START, READ_ONLY_SPACE_SIZE) || in_range_p(addr, STATIC_SPACE_START , STATIC_SPACE_SIZE) || - in_range_p(addr, DYNAMIC_SPACE_START , DYNAMIC_SPACE_SIZE)) + in_range_p(addr, DYNAMIC_SPACE_START , dynamic_space_size)) return 1; for_each_thread(th) { if((th->control_stack_start <= addr) && (addr < th->control_stack_end))