From: Robert Haas Date: Tue, 8 Apr 2014 20:22:50 +0000 (-0400) Subject: Fix silly oversight in patch to remove dsm state file. X-Git-Tag: REL9_4_BETA1~206 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c4ea7a309249064b7c2a8b9612ee00f570f14af;p=postgresql 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... --- 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; }