Since those are chunks of code based on our codebase, it's easiest to use the same license.
21 lines
373 B
Text
21 lines
373 B
Text
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
@@
|
|
expression q, p, n, m;
|
|
@@
|
|
- q = realloc(p, (n)*(m))
|
|
+ q = reallocarray(p, n, m)
|
|
@@
|
|
expression q, p, n, m;
|
|
@@
|
|
- q = realloc(p, n*(m))
|
|
+ q = reallocarray(p, n, m)
|
|
@@
|
|
expression q, p, n, m;
|
|
@@
|
|
- q = realloc(p, (n)*m)
|
|
+ q = reallocarray(p, n, m)
|
|
@@
|
|
expression q, p, n, m;
|
|
@@
|
|
- q = realloc(p, n*m)
|
|
+ q = reallocarray(p, n, m)
|