(xrealloc): Always pass two args to `fatal'.
This commit is contained in:
parent
08fa58c940
commit
6d8f7d5dd1
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2001-11-03 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* cvtmail.c (xrealloc): Always pass two args to `fatal'.
|
||||
|
||||
* movemail.c (popmail): Always pass two args to `error'.
|
||||
|
||||
2001-10-24 Ken Raeburn <raeburn@gnu.org>
|
||||
|
||||
* Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue