Fixed a small bug in ikarus-fasl.c that caused linux and cygwin
builds to segfault.
This commit is contained in:
parent
d9475009fd
commit
e5fd23f50f
|
@ -432,7 +432,7 @@ static ikptr do_read(ikpcb* pcb, fasl_port* p){
|
|||
ref(rtd, off_rtd_printer) = false_object;
|
||||
ref(rtd, off_rtd_symbol) = symb;
|
||||
ref(symb, off_symbol_record_value) = rtd;
|
||||
((unsigned char*)(long)pcb->dirty_vector)[page_index(symb+off_symbol_record_value)] = -1;
|
||||
((unsigned int*)(long)pcb->dirty_vector)[page_index(symb+off_symbol_record_value)] = -1;
|
||||
} else {
|
||||
rtd = gensym_val;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue