From: Richard M. Stallman Date: Sat, 3 Nov 2001 19:04:48 +0000 (+0000) Subject: (xrealloc): Always pass two args to `fatal'. X-Git-Tag: ttn-vms-21-2-B4~18855 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6d8f7d5dd1193eee9ff89331646556207ec2c66e;p=emacs.git (xrealloc): Always pass two args to `fatal'. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index f74b23ac14e..04ffd8a2d7d 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,9 @@ +2001-11-03 Richard M. Stallman + + * cvtmail.c (xrealloc): Always pass two args to `fatal'. + + * movemail.c (popmail): Always pass two args to `error'. + 2001-10-24 Ken Raeburn * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include diff --git a/lib-src/cvtmail.c b/lib-src/cvtmail.c index 20ef3412439..85c5512abfc 100644 --- a/lib-src/cvtmail.c +++ b/lib-src/cvtmail.c @@ -174,6 +174,6 @@ xrealloc (ptr, size) { char *result = realloc (ptr, size); if (!result) - fatal ("virtual memory exhausted"); + fatal ("virtual memory exhausted", 0); return result; }