From 27ee0dd761e825d48afff6cf636ff70302669cb0 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Sat, 14 May 2022 03:36:38 +0800 Subject: [PATCH] Include mem_alloc.h in files that use xmalloc Also fix some incorrect calls exposed by this. Forwarded: no Last-Update: 2015-12-27 Gbp-Pq: Name declare-xmalloc.patch --- src/cmd_decode_file.c | 1 + src/cmd_encode_file.c | 1 + src/cmd_start_node.c | 17 +++++++++-------- src/worker_mpi_node.c | 1 + 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/cmd_decode_file.c b/src/cmd_decode_file.c index 88a3bf0..05c2e6e 100644 --- a/src/cmd_decode_file.c +++ b/src/cmd_decode_file.c @@ -47,6 +47,7 @@ #include #include #include +#include #include #include #include diff --git a/src/cmd_encode_file.c b/src/cmd_encode_file.c index d9ddf6b..bc82821 100644 --- a/src/cmd_encode_file.c +++ b/src/cmd_encode_file.c @@ -47,6 +47,7 @@ #include #include #include +#include #include #include #include diff --git a/src/cmd_start_node.c b/src/cmd_start_node.c index 0d201d3..8d71285 100644 --- a/src/cmd_start_node.c +++ b/src/cmd_start_node.c @@ -48,6 +48,7 @@ #include #include #include +#include #include #include @@ -418,11 +419,11 @@ static void action_encode_gs(int sock_fd, char *ip_addr, int port) filter[filter_len] = 0; /* Allocate memory (it will be released implicitly at exit) */ - Y0 = (unsigned char *) xmalloc(block_size * block_size, + Y0 = (unsigned char *) xmalloc(block_size * block_size * sizeof(unsigned char)); Y = (unsigned char **) eps_malloc_2D(block_size, block_size, sizeof(unsigned char)); - buf = (unsigned char *) xmalloc(bytes_per_block, + buf = (unsigned char *) xmalloc(bytes_per_block * sizeof(unsigned char)); /* Process all incoming blocks */ @@ -526,7 +527,7 @@ static void action_encode_tc(int sock_fd, char *ip_addr, int port) RECV_VALUE_FROM_MASTER(&Cr_ratio); /* Allocate memory (it will be released implicitly at exit) */ - Y0 = (unsigned char *) xmalloc(block_size * block_size, + Y0 = (unsigned char *) xmalloc(block_size * block_size * sizeof(unsigned char)); R = (unsigned char **) eps_malloc_2D(block_size, block_size, sizeof(unsigned char)); @@ -534,7 +535,7 @@ static void action_encode_tc(int sock_fd, char *ip_addr, int port) sizeof(unsigned char)); B = (unsigned char **) eps_malloc_2D(block_size, block_size, sizeof(unsigned char)); - buf = (unsigned char *) xmalloc(bytes_per_block, + buf = (unsigned char *) xmalloc(bytes_per_block * sizeof(unsigned char)); /* Process all incoming blocks */ @@ -628,11 +629,11 @@ static void action_decode_gs(int sock_fd, char *ip_addr, int port) RECV_VALUE_FROM_MASTER(&block_size); /* Allocate memory (it will be released implicitly at exit) */ - Y0 = (unsigned char *) xmalloc(block_size * block_size, + Y0 = (unsigned char *) xmalloc(block_size * block_size * sizeof(unsigned char)); Y = (unsigned char **) eps_malloc_2D(block_size, block_size, sizeof(unsigned char)); - buf = (unsigned char *) xmalloc(buf_size, + buf = (unsigned char *) xmalloc(buf_size * sizeof(unsigned char)); /* Process all incoming blocks */ @@ -707,7 +708,7 @@ static void action_decode_tc(int sock_fd, char *ip_addr, int port) RECV_VALUE_FROM_MASTER(&block_size); /* Allocate memory (it will be released implicitly at exit) */ - Y0 = (unsigned char *) xmalloc(block_size * block_size, + Y0 = (unsigned char *) xmalloc(block_size * block_size * sizeof(unsigned char)); R = (unsigned char **) eps_malloc_2D(block_size, block_size, sizeof(unsigned char)); @@ -715,7 +716,7 @@ static void action_decode_tc(int sock_fd, char *ip_addr, int port) sizeof(unsigned char)); B = (unsigned char **) eps_malloc_2D(block_size, block_size, sizeof(unsigned char)); - buf = (unsigned char *) xmalloc(buf_size, + buf = (unsigned char *) xmalloc(buf_size * sizeof(unsigned char)); /* Process all incoming blocks */ diff --git a/src/worker_mpi_node.c b/src/worker_mpi_node.c index 1f3c040..13e0217 100644 --- a/src/worker_mpi_node.c +++ b/src/worker_mpi_node.c @@ -31,6 +31,7 @@ #include #include #include +#include #include #include #include