On Thursday 08 November 2001 11:46 am, [EMAIL PROTECTED] wrote: > jerenkrantz 01/11/08 11:46:44 > > Modified: dbm apr_dbm_berkeleydb.c apr_dbm_gdbm.c apr_dbm_sdbm.c > Log: > We are calling abort(), so we should include stdlib.h.
A library should NEVER call abort. If you need to cause the program to die, then you should return a value and let the program handle it cleanly. Dieing inside a library is just wrong. -1 for this change, the correct approach is to remove the abort calls. Ryan ______________________________________________________________ Ryan Bloom [EMAIL PROTECTED] Covalent Technologies [EMAIL PROTECTED] --------------------------------------------------------------
