mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 09:10:22 +02:00
* gc-card.c ("sweep_card"): remove SCM_MISC_ERROR messages: print
message and abort. * gc-mark.c ("scm_gc_mark_dependencies"): idem.
This commit is contained in:
parent
da220f2794
commit
be3ff02158
4 changed files with 35 additions and 8 deletions
|
@ -380,7 +380,10 @@ scm_must_free (void *obj)
|
|||
if (obj)
|
||||
free (obj);
|
||||
else
|
||||
SCM_MISC_ERROR ("freeing NULL pointer", SCM_EOL);
|
||||
{
|
||||
fprintf (stderr,"freeing NULL pointer");
|
||||
abort ();
|
||||
}
|
||||
}
|
||||
#undef FUNC_NAME
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue