mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
21 lines
324 B
Plaintext
21 lines
324 B
Plaintext
|
@@
|
||
|
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)
|