0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00

[mem] calloc -> mem_calloc. Refs #362

This commit is contained in:
Witold Filipczyk 2025-01-11 15:01:18 +01:00
parent c68f7e2ab6
commit 31be553392

View File

@ -155,7 +155,7 @@ compress_lines(struct document *document)
if (!maxy) {
return;
}
int *offset = calloc(maxy, sizeof(*offset));
int *offset = mem_calloc(maxy, sizeof(*offset));
if (!offset) {
return;