mirror of
https://github.com/tmate-io/tmate.git
synced 2025-02-03 11:59:13 +01:00
use reallocarray instead of calloc; avoid the zero before infill
ok nicm
This commit is contained in:
parent
9a453dd354
commit
ab73997cc5
2
grid.c
2
grid.c
@ -657,7 +657,7 @@ grid_duplicate_lines(struct grid *dst, u_int dy, struct grid *src, u_int sy,
|
|||||||
|
|
||||||
memcpy(dstl, srcl, sizeof *dstl);
|
memcpy(dstl, srcl, sizeof *dstl);
|
||||||
if (srcl->cellsize != 0) {
|
if (srcl->cellsize != 0) {
|
||||||
dstl->celldata = xcalloc(
|
dstl->celldata = xreallocarray(NULL,
|
||||||
srcl->cellsize, sizeof *dstl->celldata);
|
srcl->cellsize, sizeof *dstl->celldata);
|
||||||
memcpy(dstl->celldata, srcl->celldata,
|
memcpy(dstl->celldata, srcl->celldata,
|
||||||
srcl->cellsize * sizeof *dstl->celldata);
|
srcl->cellsize * sizeof *dstl->celldata);
|
||||||
|
Loading…
Reference in New Issue
Block a user