]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix memory leak on DSM slot exhaustion.
authorThomas Munro <tmunro@postgresql.org>
Sat, 1 Feb 2020 01:29:13 +0000 (14:29 +1300)
committerThomas Munro <tmunro@postgresql.org>
Sat, 1 Feb 2020 01:59:58 +0000 (14:59 +1300)
commita5f45c3dd3b569de07e9adf049e748c6a3a896a5
treea568f5d729587a28248736a3dd59253468b9d3a6
parent59047b6d0c93db208a40a77a3672cbe10b7b04da
Fix memory leak on DSM slot exhaustion.

If we attempt to create a DSM segment when no slots are available,
we should return the memory to the operating system.  Previously
we did that if the DSM_CREATE_NULL_IF_MAXSEGMENTS flag was
passed in, but we didn't do it if an error was raised.  Repair.

Back-patch to 9.4, where DSM segments arrived.

Author: Thomas Munro
Reviewed-by: Robert Haas
Reported-by: Julian Backes
Discussion: https://postgr.es/m/CA%2BhUKGKAAoEw-R4om0d2YM4eqT1eGEi6%3DQot-3ceDR-SLiWVDw%40mail.gmail.com
src/backend/storage/ipc/dsm.c