diff options
| author | Richard M. Stallman | 2001-11-03 19:04:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-03 19:04:48 +0000 |
| commit | 6d8f7d5dd1193eee9ff89331646556207ec2c66e (patch) | |
| tree | 33844ceeb85a57f32e64f61e0f20554bbcc21a80 /lib-src | |
| parent | 08fa58c940d82dbbf1dbefb4a08165507a4e1ca1 (diff) | |
| download | emacs-6d8f7d5dd1193eee9ff89331646556207ec2c66e.tar.gz emacs-6d8f7d5dd1193eee9ff89331646556207ec2c66e.zip | |
(xrealloc): Always pass two args to `fatal'.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 6 | ||||
| -rw-r--r-- | lib-src/cvtmail.c | 2 |
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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-10-24 Ken Raeburn <raeburn@gnu.org> | 7 | 2001-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 | } |