# HG changeset patch # User Olaf Wintermann <olaf.wintermann@gmail.com> # Date 1739205891 -3600 # Node ID eb48f716b31cc8c52ff7a7ab88238e4c3a5f600c # Parent 4f5ccaea4a92abc51d098a94ea749cb4fba56a24 fix OOM handling in pool_malloc, which could lead to invalid pools and potential crash diff -r 4f5ccaea4a92 -r eb48f716b31c src/server/util/pool.c --- a/src/server/util/pool.c Sat Feb 01 09:23:14 2025 +0100 +++ b/src/server/util/pool.c Mon Feb 10 17:44:51 2025 +0100 @@ -561,7 +561,6 @@ blocksize = pool_config.block_size; curr_block = _create_block(pool, blocksize); - pool->curr_block = curr_block; if (curr_block == NULL) { //ereport(LOG_CATASTROPHE, @@ -569,6 +568,8 @@ //PR_SetError(PR_OUT_OF_MEMORY_ERROR, 0); return NULL; } + + pool->curr_block = curr_block; ptr = curr_block->start; curr_block->start += reqsize;