From 6d8f7d5dd1193eee9ff89331646556207ec2c66e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 3 Nov 2001 19:04:48 +0000 Subject: [PATCH] (xrealloc): Always pass two args to `fatal'. --- lib-src/ChangeLog | 6 ++++++ lib-src/cvtmail.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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; } -- 2.39.5