1 /* Increase the size of a dynamic array.
2 Copyright (C) 2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
20 #include <malloc-internal.h>
25 __libc_dynarray_resize (struct dynarray_header
*list
, size_t size
,
26 void *scratch
, size_t element_size
)
28 /* The existing allocation provides sufficient room. */
29 if (size
<= list
->allocated
)
35 /* Otherwise, use size as the new allocation size. The caller is
36 expected to provide the final size of the array, so there is no
37 over-allocation here. */
39 size_t new_size_bytes
;
40 if (check_mul_overflow_size_t (size
, element_size
, &new_size_bytes
))
43 if (list
->array
== scratch
)
45 /* The previous array was not heap-allocated. */
46 new_array
= malloc (new_size_bytes
);
47 if (new_array
!= NULL
&& list
->array
!= NULL
)
48 memcpy (new_array
, list
->array
, list
->used
* element_size
);
51 new_array
= realloc (list
->array
, new_size_bytes
);
52 if (new_array
== NULL
)
54 list
->array
= new_array
;
55 list
->allocated
= size
;
59 libc_hidden_def (__libc_dynarray_resize
)