mirror of
https://github.com/tmate-io/tmate.git
synced 2026-01-23 02:24:06 +00:00
use reallocarray instead of calloc; avoid the zero before infill
ok nicm
This commit is contained in:
parent
9a453dd354
commit
ab73997cc5
1 changed files with 1 additions and 1 deletions
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);
|
||||
if (srcl->cellsize != 0) {
|
||||
dstl->celldata = xcalloc(
|
||||
dstl->celldata = xreallocarray(NULL,
|
||||
srcl->cellsize, sizeof *dstl->celldata);
|
||||
memcpy(dstl->celldata, srcl->celldata,
|
||||
srcl->cellsize * sizeof *dstl->celldata);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue