]>
git.ipfire.org Git - thirdparty/bash.git/blob - lib/malloc/xmalloc.c
59759834f628b3845e387e8900a91cb5319631ee
1 /* xmalloc.c -- safe versions of malloc and realloc */
3 /* Copyright (C) 1991-2003, 2022 Free Software Foundation, Inc.
5 This file is part of GNU Readline, a library for reading lines
6 of text with interactive input and history editing.
8 Readline is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 Readline is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Readline. If not, see <http://www.gnu.org/licenses/>.
22 #if defined (HAVE_CONFIG_H)
28 #if defined (HAVE_STDLIB_H)
31 # include "ansi_stdlib.h"
32 #endif /* HAVE_STDLIB_H */
34 /* Generic pointer type. */
39 /* **************************************************************** */
41 /* Memory Allocation and Deallocation. */
43 /* **************************************************************** */
46 memory_error_and_abort (char *fname
)
48 fprintf (stderr
, "%s: out of virtual memory\n", fname
);
52 /* Return a pointer to free()able block of memory large enough
53 to hold BYTES number of bytes. If the memory cannot be allocated,
54 print an error message and abort. */
56 xmalloc (size_t bytes
)
60 temp
= malloc (bytes
);
62 memory_error_and_abort ("xmalloc");
67 xrealloc (PTR_T pointer
, size_t bytes
)
71 temp
= pointer
? realloc (pointer
, bytes
) : malloc (bytes
);
74 memory_error_and_abort ("xrealloc");