diff options
author | Robert Haas | 2014-04-08 20:22:50 +0000 |
---|---|---|
committer | Robert Haas | 2014-04-08 20:22:50 +0000 |
commit | 0c4ea7a309249064b7c2a8b9612ee00f570f14af (patch) | |
tree | 07ed618c94c85121997b969de70018c0fcb8505b | |
parent | f23a5630ebc797219b62797f566dec9f65090e03 (diff) |
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...
-rw-r--r-- | src/backend/port/win32_shmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |