[pgpool-committers: 7395] pgpool: Fix error while allocating shared memory.

Tatsuo Ishii ishii at sraoss.co.jp
Wed Jan 13 19:28:50 JST 2021


Fix error while allocating shared memory.

If num_init_children * max_pool is huge, pool_coninfo_size() failed to
calculate the size of required shared memory because the data type
used for the variable to store shared memory size was int and it
overflows for too large shared memory size. To fix this change
pool_coninfo_size() to size_t and use appropriate size_t for the
variable used within the function.

Also fix to use proper format qualifier in
pool_shared_memory_create().

Branch
------
V3_5_STABLE

Details
-------
https://git.postgresql.org/gitweb?p=pgpool2.git;a=commitdiff;h=d3d744ce0b06ea54792cab813ddf2899e7b1c589

Modified Files
--------------
src/context/pool_process_context.c         | 10 ++++++----
src/include/context/pool_process_context.h |  4 ++--
src/utils/pool_shmem.c                     |  6 +++---
3 files changed, 11 insertions(+), 9 deletions(-)



More information about the pgpool-committers mailing list