aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-03 19:04:48 +0000
committerRichard M. Stallman2001-11-03 19:04:48 +0000
commit6d8f7d5dd1193eee9ff89331646556207ec2c66e (patch)
tree33844ceeb85a57f32e64f61e0f20554bbcc21a80 /lib-src
parent08fa58c940d82dbbf1dbefb4a08165507a4e1ca1 (diff)
downloademacs-6d8f7d5dd1193eee9ff89331646556207ec2c66e.tar.gz
emacs-6d8f7d5dd1193eee9ff89331646556207ec2c66e.zip
(xrealloc): Always pass two args to `fatal'.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog6
-rw-r--r--lib-src/cvtmail.c2
2 files changed, 7 insertions, 1 deletions
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 @@
12001-11-03 Richard M. Stallman <rms@gnu.org>
2
3 * cvtmail.c (xrealloc): Always pass two args to `fatal'.
4
5 * movemail.c (popmail): Always pass two args to `error'.
6
12001-10-24 Ken Raeburn <raeburn@gnu.org> 72001-10-24 Ken Raeburn <raeburn@gnu.org>
2 8
3 * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include 9 * 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)
174{ 174{
175 char *result = realloc (ptr, size); 175 char *result = realloc (ptr, size);
176 if (!result) 176 if (!result)
177 fatal ("virtual memory exhausted"); 177 fatal ("virtual memory exhausted", 0);
178 return result; 178 return result;
179} 179}