aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2019-04-03 23:23:35 -0700
committerNoah Misch <noah@leadboat.com>2019-04-03 23:23:39 -0700
commite9559e7add5f91befb64f8a9e8c9e4a7d2074828 (patch)
tree42bd1f5fb829f7e4df745b6ee80ef031d275b1d7 /src
parent267d83c7d7d21b8ca3e2b99b231766ac050b8c93 (diff)
downloadpostgresql-e9559e7add5f91befb64f8a9e8c9e4a7d2074828.tar.gz
postgresql-e9559e7add5f91befb64f8a9e8c9e4a7d2074828.zip
Silence -Wimplicit-fallthrough in sysv_shmem.c.
Commit 2f932f71d9f2963bbd201129d7b971c8f5f077fd added code that elicits a warning on buildfarm member flaviventris. Back-patch to 9.4, like that commit. Reported by Andres Freund. Discussion: https://postgr.es/m/20190404020057.galelv7by75ekqrh@alap3.anarazel.de
Diffstat (limited to 'src')
-rw-r--r--src/backend/port/sysv_shmem.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/port/sysv_shmem.c b/src/backend/port/sysv_shmem.c
index 79eaeb6a57c..d9f20ed195e 100644
--- a/src/backend/port/sysv_shmem.c
+++ b/src/backend/port/sysv_shmem.c
@@ -675,6 +675,7 @@ PGSharedMemoryCreate(Size size, int port,
(unsigned long) shmid),
errhint("Terminate any old server processes associated with data directory \"%s\".",
DataDir)));
+ break;
case SHMSTATE_ENOENT:
/*
@@ -706,6 +707,7 @@ PGSharedMemoryCreate(Size size, int port,
dsm_cleanup_using_control_segment(oldhdr->dsm_control);
if (shmctl(shmid, IPC_RMID, NULL) < 0)
NextShmemSegID++;
+ break;
}
if (oldhdr && shmdt(oldhdr) < 0)