From 0c4ea7a309249064b7c2a8b9612ee00f570f14af Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Tue, 8 Apr 2014 16:22:50 -0400 Subject: [PATCH] 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... --- src/backend/port/win32_shmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/port/win32_shmem.c b/src/backend/port/win32_shmem.c index 3a0ded4865..a537bb35ea 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; }