aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2014-04-08 16:22:50 -0400
committerRobert Haas <rhaas@postgresql.org>2014-04-08 16:22:50 -0400
commit0c4ea7a309249064b7c2a8b9612ee00f570f14af (patch)
tree07ed618c94c85121997b969de70018c0fcb8505b /src
parentf23a5630ebc797219b62797f566dec9f65090e03 (diff)
downloadpostgresql-0c4ea7a309249064b7c2a8b9612ee00f570f14af.tar.gz
postgresql-0c4ea7a309249064b7c2a8b9612ee00f570f14af.zip
Fix silly oversight in patch to remove dsm state file.
I'm not sure if this is what's causing the Windows buildfarm members to get unhappy, but I don't think it can be helping anything...
Diffstat (limited to 'src')
-rw-r--r--src/backend/port/win32_shmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/port/win32_shmem.c b/src/backend/port/win32_shmem.c
index 3a0ded48650..a537bb35ea5 100644
--- a/src/backend/port/win32_shmem.c
+++ b/src/backend/port/win32_shmem.c
@@ -253,7 +253,7 @@ PGSharedMemoryCreate(Size size, bool makePrivate, int port,
UsedShmemSegSize = size;
UsedShmemSegID = hmap2;
- *shim = NULL;
+ *shim = hdr;
return hdr;
}