From 18f158ef697974cb976b52dae8a048d83b7f1ca4 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Tue, 28 Oct 2014 20:26:20 +0200 Subject: [PATCH] Remove unnecessary assignment. Reported by MauMau. --- src/backend/storage/lmgr/lwlock.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/backend/storage/lmgr/lwlock.c b/src/backend/storage/lmgr/lwlock.c index bcec17335b8..719181c2089 100644 --- a/src/backend/storage/lmgr/lwlock.c +++ b/src/backend/storage/lmgr/lwlock.c @@ -997,8 +997,6 @@ LWLockWaitForVar(LWLock *lock, uint64 *valptr, uint64 oldval, uint64 *newval) */ proc->lwWaiting = true; proc->lwWaitMode = LW_WAIT_UNTIL_FREE; - proc->lwWaitLink = NULL; - /* waiters are added to the front of the queue */ proc->lwWaitLink = lock->head; if (lock->head == NULL) -- 2.39.5