Avoid segmentation fault when module is :DEFAULT and the symbol is not found.

This commit is contained in:
goffioul 2005-10-24 09:06:21 +00:00
parent 9d3fc0362e
commit bffae25f2f

View file

@ -427,7 +427,7 @@ cl_object
si_find_foreign_symbol(cl_object var, cl_object module, cl_object type, cl_object size)
{
cl_object block;
cl_object output;
cl_object output = Cnil;
void *sym;
block = (module == @':default' ? module : si_load_foreign_module(module));