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/>. */
21 #include <malloc-internal.h>
26 __libc_dynarray_resize (struct dynarray_header
*list
, size_t size
,
27 void *scratch
, size_t element_size
)
29 /* The existing allocation provides sufficient room. */
30 if (size
<= list
->allocated
)
36 /* Otherwise, use size as the new allocation size. The caller is
37 expected to provide the final size of the array, so there is no
38 over-allocation here. */
40 size_t new_size_bytes
;
41 if (check_mul_overflow_size_t (size
, element_size
, &new_size_bytes
))
48 if (list
->array
== scratch
)
50 /* The previous array was not heap-allocated. */
51 new_array
= malloc (new_size_bytes
);
52 if (new_array
!= NULL
&& list
->array
!= NULL
)
53 memcpy (new_array
, list
->array
, list
->used
* element_size
);
56 new_array
= realloc (list
->array
, new_size_bytes
);
57 if (new_array
== NULL
)
59 list
->array
= new_array
;
60 list
->allocated
= size
;
64 libc_hidden_def (__libc_dynarray_resize
)